List offramps
Offramps
List offramps
List offramps, newest first.
All filters are optional. With no filters, every offramp for the integration is returned (paginated).
Filter behavior
customer_id— restricts to offramps for a single customer. Must be a validcust_…id. An unknown id returns an empty page (200,data: []), not404.status— restricts to a single lifecycle status. One ofcreated,processing,temporary_failure,success,failed,returned.created_after/created_before— either aYYYY-MM-DDcalendar date (UTC, inclusive:created_aftermatches at or after00:00:00,created_beforeat or before23:59:59.999) or a full ISO 8601 UTC timestamp ending inZ(e.g.2026-04-16T16:16:03Z), used as the exact instant.
Pagination
page— 1-indexed page number. Defaults to1. Must be between1and1,000,000.per_page— page size. Defaults to50. Must be between1and200.
The response carries pagination metadata under meta:
"meta": {
"request_id": "req_...",
"timestamp": "...",
"version": "1",
"page": 1,
"per_page": 50,
"total": 137,
"has_more": true
}
has_more is true when at least one more page is available.
Ordering
Results are sorted by created_at DESC, id DESC (newest first, deterministic on
ties).
Example
GET /v1/offramps?status=processing&customer_id=cust_seed_alice&page=1&per_page=50
GET
List offramps
Authorizations
API key issued during merchant onboarding.