---
title: "List customers."
method: GET
path: "/v2/customers"
tags: ["Customers"]
---

# List customers.

`GET /v2/customers`

## Query parameters

- `limit` integer
- `starting_after` string — Return records created after this resource id, ordered by created_at then id.

## Response `200`

Page of resources.

- CustomerList
  - `data` Customer[], required
    - `id` string, uuid, required — Customer UUID.
    - `name` string, required — Customer name.
    - `external_id` string, nullable, required — Optional caller-supplied external identifier.
    - `stripe_customer_id` string, nullable, required — Optional Stripe customer identifier.
    - `quickbooks_customer_id` string, uuid, nullable, required — Optional QuickBooks customer UUID.
    - `created_at` integer, required — Unix timestamp in seconds.
    - `updated_at` integer, required — Unix timestamp in seconds.
  - `has_more` boolean, required — True when additional records are available after the returned page.

## Other responses

- `400` — Bad request, invalid header, invalid amount/quantity/currency, or text validation failure.
- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission, or reset was attempted outside the test namespace.
- `408` — Request exceeded the 30 second timeout.
- `429` — Rate limit exceeded.
- `500` — Internal server error or queue failure.

---

[API](https://skmtc.dev/ledgerup/apis/ledgerup-api.md) · [All operations](https://skmtc.dev/ledgerup/apis/ledgerup-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ledgerup/ledgerup-api/revisions/be257191807b/schema)
