GET
/
api
/
v1
/
agents
List all agents
curl --request GET \
  --url https://prod.featherhq.com/api/v1/agents \
  --header 'X-API-Key: <api-key>'
{
  "agents": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "inboundPhoneNumbers": [
        {
          "id": "<string>"
        }
      ],
      "outboundPhoneNumbers": [
        {
          "id": "<string>"
        }
      ],
      "cekuraAgentId": 123,
      "cekuraPhoneNumberId": "<string>"
    }
  ],
  "pagination": {
    "limit": 10,
    "nextCursor": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

cursor
string
limit
string
default:10

Response

200
application/json

List of agents retrieved successfully

The response is of type object.