Skip to main content
GET
https://api.bizzy.ai
/
v1
/
agents
Agent Overview
curl --request GET \
  --url https://api.bizzy.ai/v1/agents \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1234567,
      "name": "Enterprise Sales Agent",
      "status": "ACTIVE",
      "createdAt": "2025-12-17T09:23:00.000Z"
    },
    {
      "id": 2345678,
      "name": "SMB Outreach Agent",
      "status": "ACTIVE",
      "createdAt": "2025-12-17T14:37:00.000Z"
    }
  ],
  "pagination": {
    "limit": 4,
    "offset": 0,
    "total": 2
  }
}
Get a paginated list of all agents in your team.

Request

Query Parameters

offset
number
default:0
The number of items to skip before starting to collect the result set
limit
number
default:4
The maximum number of items to return

Response

{
  "data": [
    {
      "id": 1234567,
      "name": "Enterprise Sales Agent",
      "status": "ACTIVE",
      "createdAt": "2025-12-17T09:23:00.000Z"
    },
    {
      "id": 2345678,
      "name": "SMB Outreach Agent",
      "status": "ACTIVE",
      "createdAt": "2025-12-17T14:37:00.000Z"
    }
  ],
  "pagination": {
    "limit": 4,
    "offset": 0,
    "total": 2
  }
}
data
array
Array of agent objects
pagination
object
Pagination information