Skip to main content
GET
/
api
/
v1
/
agents
/
charges
List Charges
curl --request GET \
  --url https://pulsarpay.io/api/v1/agents/charges \
  --header 'x-agent-key: <x-agent-key>'
{
  "data": [
    {
      "id": "cmnf6jwup00091rcvo4qevr42",
      "idempotencyKey": "2207f602-c751-4b9b-98ae-456653bfe7b7",
      "amount": 50,
      "currency": "USDC",
      "description": "AI Inference Service",
      "status": "FAILED",
      "createdAt": "2026-03-31T22:20:03.217Z"
    }
  ],
  "pagination": {
    "total": 2,
    "page": 1,
    "limit": 50,
    "totalPages": 1
  }
}

Headers

x-agent-key
string
required

The unique API key of the agent used for authentication.

Query Parameters

page
integer
default:1

The page number to retrieve. Used for navigating through large datasets.

limit
integer
default:50

Maximum number of charge records to return per page.

Response

Successful retrieval of the charges list.

data
object[]
pagination
object