The Get Agents endpoint retrieves a list of all Domain Expert Agents (DXAs) associated with the current user. This allows you to manage and interact with your agents programmatically.
Endpoint
GET /agents
## Parameters| Name | Type | In | Description ||----------|--------|-------|--------------------------------------------|| limit | int | query | Number of agents to return (default: 10) || offset | int | query | Number of agents to skip (default: 0) |
cURL Example
curl -X GET 'https://{api_endpoints}/agents?limit=10&offset=0' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'