https://api.orqex.com/v1
Response envelopes
A write returns a message and the resource:Amounts
Every amount in a response is an object, so you never have to format it yourself:50 means 50.00, never 0.50.
The minimum is 1.
Pagination
Lists are cursor-paginated. Passper_page to size the page, and follow next_cursor or
next_page_url to walk forward.
has_more_pages is false. Cursors are opaque — do not parse or construct them.
Idempotency
SendX-Idempotency-Key on any POST to make a retry safe. The key is a string you choose,
8 to 128 characters, unique per logical operation.
X-Idempotent-Replayed: true. No
second payment is created.
Use it wherever a network timeout would otherwise leave you unsure whether the call landed:
creating intents, attempts, refunds and payouts. Safe methods (GET) ignore the header.
Rate limits
100 requests per minute per API key. Over the limit, the API returns429; back off and
retry.
Timestamps and identifiers
Timestamps are ISO 8601. Identifiers are opaque strings with a resource prefix (pi_ for a
payment intent, rq_ for a requery, and so on). Treat them as strings; do not infer meaning
from their contents beyond the prefix.