Skip to main content
GET
/
sectors
/
:id

Endpoint

GET https://gateway.orkeia.ai/sectors/{id} Authentication
Requires header authorization: <your_token>.

Path Parameters

NameTypeRequiredDescriptionExample
idstringYesUnique identifier of the sector.SECTOR_12345

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/sectors/SECTOR_12345" \
  -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": {
    "id": "SECTOR_12345",
    "name": "Technology",
    "description": "IT Sector"
  }
}

500 — Server Error

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}