Agents
List Agents
Retrieve paginated list of agents with cursor-based pagination
get/api/v1/agents
Query parameters
limitinteger
Max agents per page (max: 100, default: 12)
cursorstring
Pagination cursor from previous response
Example:eyJzb3J0RmllbGQiOiJ1cGRhdGVkQXQiLCJzb3J0VmFsdWUiOiIyMDI1LTAxLTAxVDEyOjAwOjAwWiIsImxhc3RJZCI6IjEyMzQ1In0=
sortstring
Sort by 'displayName' or 'updatedAt' (default)
Example:updatedAt
searchstring
Filter by name or description
Example:assistant
Response
Successful response with list of agents
Example response
{
"agents": [
{
"agent": {
"platform": "agent0",
"url": "https://agent0.example.com/agents/abc123"
}
}
]
}