Skip to main content
GET
/
v1
/
sectors
List sectors
curl --request GET \
  --url https://api.passu.ai/v1/sectors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "CHEMICALS"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string | null

Opaque cursor for pagination.

limit
integer
default:50

Maximum number of records to return.

Required range: 1 <= x <= 200

Response

Successful Response

data
Sector · object[]
required
has_more
boolean
required
next_cursor
string | null