Appearance
List Customers
Retrieve all customers in your account.
GET /v1/customersQuery Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
search | string | Search 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"