Skip to main content
GET
/
v1
/
processors
List
curl --request GET \
  --url https://{defaultHost}/v1/processors \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/processors"
  },
  "data": [
    {
      "id": "e142a7cb-634d-4acd-93d3-e3cfb0e8268b",
      "object": "processor",
      "approved": true,
      "enabled": true,
      "live_mode": true,
      "processor_type": "stripe",
      "processor_data": {
        "account_id": "external_account_55",
        "publishable_key": "pk_test_51KeWoQFugiAKLuJycCZesY1aYEzfauqW2SHSZSUj5xCorx7h7oZd5i6Vz2whx7Y5fMZr6WQQTeOoQEtaEnpk4fkB00dinySlbK"
      },
      "recurring_enabled": true,
      "supported_currencies": null,
      "created_at": 1767909734,
      "updated_at": 1767909734
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

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.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.