List ramp transactions
Returns a page of ramp transactions for the authenticated user, scoped to
their Meld customer record. Use this to reconcile state between widget
sessions opened via POST /v0/ramp/sessions and the live provider state.
For status changes between polls, poll GET /v0/ramp/transactions/{id}
on a back-off; outbound developer webhooks are not yet exposed (the
/v0/webhooks/meld/events route is an inbound provider receiver, not a
subscription endpoint).
Filtering:
- Filter by
statusto narrow to a single provider transaction status (e.g.SETTLED,PROCESSING,FAILED). Use the raw provider value; see themeld_statusfield onTransactionDatafor the value space.
Pagination:
pageis zero-indexed;countis page size (default 50, max 100). This endpoint emulates offset pagination server-side; cost grows linearly withpage, so very deep paging is discouraged. Most partners stay on the first handful of pages.
Response shape:
Each item is the canonical Sumvin TransactionData with both status
(canonical) and meld_status (raw provider) populated. Foreign-customer
transactions returned by the provider in error are filtered out before
the response is built.
Authorizations
JWT issued by Dynamic Labs or Privy. Sent in the x-juno-jwt header on every authenticated request.
Headers
Tenant org ID for multi-tenant auth
Controls how timestamp fields are serialized in JSON response bodies.
Default (header omitted or any other value): epoch milliseconds as integers.
iso8601: UTC ISO 8601 strings of the form YYYY-MM-DDTHH:MM:SSZ.
Example: with X-Timestamp-Format: iso8601, the field value 1704067200000 becomes "2024-01-01T00:00:00Z".
Affected fields (recursively, in dicts and arrays): any field whose name ends in _at, plus the literal field names timestamp, period_start, and period_end. All other fields are passed through unchanged.
Only iso8601 is recognized. Any other value (or omitting the header) yields the default epoch-ms representation; the server does not reject unknown values, so this is documented as an example rather than an enum to keep generated clients permissive.
"iso8601"
Query Parameters
Filter by provider transaction status.
Page index for pagination.
x >= 0Page size (max 100).
1 <= x <= 100