Customers

List customers

List customers with optional pagination and search filtering.

get/api/v1/customers

Query parameters

pageinteger

Page number (0-indexed)

per_pageinteger

Number of items per page

searchstring
archivedboolean

Response

List of customers

Example response

{
  "data": [
    {
      "billing_address": {
        "country": "US"
      },
      "currency": "EUR",
      "id": "cus_7n42DGM5Tflk9n8mt7Fhc7",
      "invoicing_entity_id": "ive_7n42DGM5Tflk9n8mt7Fhc7",
      "shipping_address": {
        "address": {
          "country": "US"
        }
      }
    }
  ]
}

Changes