Reference

Request Format

JSON body rules, query arrays, dates, and cursor pagination.

Modified at Apr 28, 2026, 05:38 AM UTC

JSON Bodies

Endpoints with request bodies expect JSON.

Loading cURL...

If Content-Type is missing or not JSON, the API returns 400 UNEXPECTED_CONTENT_TYPE_ERROR.

Repeated Query Params

Array filters are sent by repeating the same query parameter:

/api/order?status=processing&status=completed

Dates

Date filters should be ISO 8601 strings:

2026-04-26T00:00:00.000Z

Pagination

List endpoints use cursor pagination.

Loading cURL...

Use next_cursor from the response as cursor in the next request:

Loading cURL...