cURL
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
Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Number of items to return per page
1 <= x <= 512
The page number to retrieve
x >= 1
List of industries retrieved successfully
Show child attributes