Skip to main content
GET
/
v1
/
sdk
/
payment-intents
List payment intents for the provider
curl --request GET \
  --url https://api.example.com/v1/sdk/payment-intents
{
  "paymentIntents": [
    {
      "processorPaymentId": "pi_1a2b3c4d5e6f7g8h",
      "planRef": "pln_2b3c4d5e6f7g",
      "amount": 4999,
      "currency": "usd",
      "clientSecret": "pi_1a2b3c4d5e6f7g8h_secret_xxx",
      "status": "succeeded",
      "createdAt": "2025-10-11T10:30:00.000Z"
    }
  ],
  "total": 1
}

Query Parameters

limit
number

Maximum number of results

Example:

50

offset
number

Pagination offset

Example:

0

Response

200 - application/json

Payment intents retrieved successfully

The response is of type object.