> ## 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.

# List Access Profiles

> Returns all available access profiles.

## Endpoint

`GET https://gateway.orkeia.ai/access-profiles`

## Headers

```
authorization:  <your_token>
```

## Responses

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": { "id": "string_id"}
}
```

### 500 — Bad Request

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

### 400 — Client Error

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

## Example (cURL)

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

## Fields

| Field       | Type   | Description         |
| ----------- | ------ | ------------------- |
| id          | string | Access profile ID   |
| name        | string | Profile name        |
| description | string | Profile description |
