Skip to main content
Get GICS industries
curl --request GET \
  --url https://api.responsibly.tech/v1/gics-industries \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "code": "10101010",
      "name": "Oil & Gas Drilling",
      "hierarchyLevel": "sub_industry",
      "parentGicsIndustryCode": "101010"
    }
  ],
  "pagination": {
    "pageSize": 100,
    "nextPage": 2
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
number
default:1
Required range: x >= 1
perPage
number
default:100
Required range: 1 <= x <= 100
subIndustriesOnly
enum<string>
default:true

When true, returns only sub-industries (the most granular level)

Available options:
true,
false

Response

Returns a list of GICS industries.

items
object[]
required
pagination
object
required