Agents
List Agents
Retrieve a paginated list of registered agents. Supports pagination with skip/limit parameters.
get/agents
Query parameters
skipinteger
Number of records to skip for pagination
limitinteger
Maximum number of records to return
Response
List of agents retrieved successfully
Example response
{
"agents": [
{
"agent_id": "agent-ebd9cd4a-1234-5678-90ab-cdef01234567",
"name": "MyAwesomeAgent",
"description": "Agent for processing order data",
"public_key": "AAAAC3NzaC1lZDI1NTE5AAAAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
"status": "active"
}
]
}