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

# Overview

## Request

#### Query

<ParamField query="limit" type="number" default="4">
  Number of items to return per page. (max 500)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Number of items to skip.
</ParamField>

## Response

<ResponseField name="type" type="string">
  The agent type, e.g. `LEAD_GENERATION`.
</ResponseField>

<ResponseField name="status" type="string">
  One of `DRAFT`, `ACTIVE`, `PAUSED` or `ARCHIVED`.
</ResponseField>

<ResponseField name="summary" type="string | null">
  A derived description of the agent.
</ResponseField>

<ResponseExample>
  ```json Response - 200 theme={null}
  {
      "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
      }
  }
  ```
</ResponseExample>
