GET
/
v2
/
market-sectors
/
{market_sector_id}
Get market sector data
curl --request GET \
  --url https://api.tokenterminal.com/v2/market-sectors/{market_sector_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "market_sector_id": "<string>",
    "name": "<string>",
    "description": {
      "what": "<string>",
      "how": "<string>"
    },
    "projects": [
      {
        "project_id": "<string>",
        "name": "<string>",
        "url": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

market_sector_id
string
required

The market sector ID.

Response

200 - application/json

OK

The response is of type object.