Customers
List customers
GET/v1/customers
Return a paginated list of customers.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
limit |
query | integer | Page size, 1–100. Default 25. |
query |
query | string | Free-text search over name and email. |
Request
curl --request GET \
--url https://api.sysos.app/v1/customers \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Content-Type: application/json"
Response 200 OK
{
"data": [
{
"id": "cus_4af20b13",
"name": "Globex Corporation",
"email": "ops@globex.com",
"country": "PT",
"created_at": "2026-02-04T11:00:00Z"
}
],
"has_more": false,
"next_cursor": null
}