Skip to content

List Customers

Retrieve all customers in your account.

GET /v1/customers

Query Parameters

ParameterTypeDescription
pagenumberPage number (default: 1)
per_pagenumberItems per page (default: 20, max: 100)
searchstringSearch by name or email

Response

json
{
  "data": [
    {
      "id": "cus_xxx",
      "email": "customer@example.com",
      "name": "John Doe",
      "licensesCount": 3,
      "createdAt": "2026-01-01T00:00:00.000Z"
    }
  ],
  "meta": {
    "page": 1,
    "perPage": 20,
    "total": 100,
    "totalPages": 5
  }
}

Example

bash
curl -X GET "https://api.packedge.dev/v1/customers?search=john" \
  -H "Authorization: Bearer pk_your_api_key"