Skip to content

Public Customers List

Request

Cursor-paginated list of customers.

Query
cursorstring or null(Cursor)

Opaque cursor from prior page

modified_sincestring or null, (date-time)(Modified Since)

ISO-8601 lower bound on updated_at. Applied only on the first page; the cursor is a strict super-set thereafter.

limitinteger or null, [ 1 .. 500 ](Limit)
Headers
authorizationstring or null(Authorization)

Bearer <mrc_live_…> API key

curl -i -X GET \
  'https://docs.mercura.ai/_mock/openapi/customers?cursor=string&modified_since=2019-08-24T14%3A15%3A22Z&limit=1' \
  -H 'authorization: string'

Responses

Successful Response

Bodyapplication/json
dataArray of objects(Data)required
Example:
[ { "address": {}, "created_at": "2026-02-03T10:15:00Z", "custom_fields": {}, "customer_id": "K-10042", "emails": [], "id": "K-10042", "name": "Elektro Mustermann GmbH", "updated_at": "2026-07-12T14:22:10Z", "vat_id": "DE123456789" } ]
next_cursorstring or null(Next Cursor)
Response
{ "data": [ {} ], "next_cursor": "string" }