Skip to main content
GET
/
v2
/
agents
Overview
curl --request GET \
  --url https://api.bizzy.ai/v2/agents \
  --header 'Authorization: Bearer <token>'
{
    "data": [
        {
            "agentId": "553311",
            "name": "Belgian SaaS prospector",
            "type": "LEAD_GENERATION",
            "status": "ACTIVE",
            "summary": "Finds Belgian SaaS companies matching your ICP.",
            "avatarUrl": null,
            "createdAt": "2026-05-20T08:45:00.000Z",
            "updatedAt": "2026-06-18T10:30:00.000Z"
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 3
    }
}

Request

Query

limit
number
default:"4"
Number of items to return per page. (max 500)
offset
number
default:"0"
Number of items to skip.

Response

type
string
The agent type, e.g. LEAD_GENERATION.
status
string
One of DRAFT, ACTIVE, PAUSED or ARCHIVED.
summary
string | null
A derived description of the agent.
{
    "data": [
        {
            "agentId": "553311",
            "name": "Belgian SaaS prospector",
            "type": "LEAD_GENERATION",
            "status": "ACTIVE",
            "summary": "Finds Belgian SaaS companies matching your ICP.",
            "avatarUrl": null,
            "createdAt": "2026-05-20T08:45:00.000Z",
            "updatedAt": "2026-06-18T10:30:00.000Z"
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 3
    }
}