Skip to main content
GET
/
v1
/
payment_intents
List
curl --request GET \
  --url https://{defaultHost}/v1/payment_intents \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/payment_intents"
  },
  "data": [
    {
      "id": "f87a2513-39f1-4eee-a7d5-8e8c06427df2",
      "object": "payment_intent",
      "amount": 500,
      "currency": "usd",
      "external_intent_id": "pi_3JhDzG2fs4LLhxzS06L7dgBR",
      "live_mode": true,
      "off_session": false,
      "processor_data": {
        "stripe": {
          "account_id": "external_account_45",
          "publishable_key": "pk_test_51KeWoQFugiAKLuJycCZesY1aYEzfauqW2SHSZSUj5xCorx7h7oZd5i6Vz2whx7Y5fMZr6WQQTeOoQEtaEnpk4fkB00dinySlbK",
          "client_secret": "pi_3K6NFo2fs4LLhxzS1leftxKh_secret_qoy2TA8XJEYKTp4bbF8hT3clV",
          "type": "payment",
          "payment_method_id": null
        }
      },
      "processor_type": "stripe",
      "reusable": false,
      "status": "pending",
      "checkout": null,
      "customer": "f925ae6a-3f5d-4e11-a09e-15c547665c73",
      "payment_method": null,
      "platform_fee": null,
      "service_fee": null,
      "created_at": 1767909728,
      "updated_at": 1767909728
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

checkout_ids[]
string[]

Only return objects that belong to the given checkouts.

customer_ids[]
string[]

Only return objects that belong to the given customers.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

live_mode
boolean

Only return objects that are live mode or test mode.

page
integer

The page of items you want returned.

status[]
string[]

Only return objects with the given status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.