Skip to main content
GET
/
api
/
v1
/
customers
List Customers
curl --request GET \
  --url https://api.example.com/api/v1/customers
{
  "data": [
    {
      "id": "...",
      "name": "Acme Corp",
      "email": "billing@acme.com",
      "external_id": "acme-corp-001",
      "billing_address_country": "US",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ],
  "meta": { "page": 1, "page_size": 20, "total": 42, "total_pages": 3 }
}
page
integer
default:"1"
Page number
page_size
integer
default:"20"
Items per page (max 100)
{
  "data": [
    {
      "id": "...",
      "name": "Acme Corp",
      "email": "billing@acme.com",
      "external_id": "acme-corp-001",
      "billing_address_country": "US",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ],
  "meta": { "page": 1, "page_size": 20, "total": 42, "total_pages": 3 }
}