Skip to main content
GET
/
v1
/
agents
List agents
curl --request GET \
  --url https://api.useproxy.ai/v1/agents \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "userId": "<string>",
      "name": "<string>",
      "status": "active",
      "createdAt": 123,
      "externalId": "<string>",
      "description": "<string>",
      "deregisteredAt": 123,
      "spendingLimit": 123,
      "spendingLimitFrequency": "perTransaction",
      "currentSpend": 123,
      "onLimitExceeded": "suspend",
      "maxCards": 123,
      "cardCount": 123,
      "metadata": {},
      "defaultRequireApproval": true,
      "defaultAutoApproveBelow": 123
    }
  ],
  "hasMore": true,
  "cursor": "<string>"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Query Parameters

external_id
string

Filter by external ID

limit
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

Agent list

data
object[]
required
hasMore
boolean
required
cursor
string | null