GET
/
agents
/
{agentId}
/
leads
Get all agent leads
curl --request GET \
  --url https://coolify-api.eagleagents.ai/v3/agents/{agentId}/leads \
  --header 'Authorization: Bearer <token>'
{
  "leads": [
    "<any>"
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agentId
string
required

Query Parameters

page
number
Required range: x >= 1
limit
number
Required range: x >= 1
groupName
string

Response

200
application/json

Successful response

The response is of type object.