curl --request GET \
--url https://sandbox.api.fin.com/v1/industries \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 104,
"total": 1040
},
"industries": [
{
"id": 1,
"title": "Oilseed Except Soybean Farming"
}
]
}
}Retrieve a list of available industries
curl --request GET \
--url https://sandbox.api.fin.com/v1/industries \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 104,
"total": 1040
},
"industries": [
{
"id": 1,
"title": "Oilseed Except Soybean Farming"
}
]
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Number of items to return per page
1 <= x <= 512The page number to retrieve
x >= 1List of industries retrieved successfully
Show child attributes