> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orkeia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Detail Sector

> Retrieves the details of a specific sector by its ID.

## Endpoint

`GET https://gateway.orkeia.ai/sectors/{id}`

**Authentication**\
Requires header `authorization:  <your_token>`.

## Path Parameters

| Name | Type   | Required | Description                      | Example       |
| ---- | ------ | -------- | -------------------------------- | ------------- |
| id   | string | Yes      | Unique identifier of the sector. | SECTOR\_12345 |

## Example (cURL)

```bash theme={null}
curl -X GET "https://gateway.orkeia.ai/sectors/SECTOR_12345" \
  -H "authorization:  <your_token>"
```

## Responses

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": {
    "id": "SECTOR_12345",
    "name": "Technology",
    "description": "IT Sector"
  }
}
```

### 500 — Server Error

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Client Error

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```
