List onramps
Onramps
List onramps
List onramps, newest first. Results are scoped to the authenticated integration.
All filters are optional. With no filters every onramp for the integration is returned (paginated).
Filter behavior
customer_id— restricts to onramps 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,awaiting_deposit,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/onramps?status=awaiting_deposit&customer_id=cust_seed_alice&page=1&per_page=50
GET
List onramps
Authorizations
API key issued during merchant onboarding.