cURL
curl --request GET \ --url https://skala-sandbox.ripio.com/api/v1/onrampSession/ \ --header 'Authorization: Bearer <token>'
{ "count": 123, "next": "<string>", "previous": "<string>", "results": [ { "sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "createdAt": "2023-11-07T05:31:56Z", "currency": "<string>", "chain": "<string>", "depositAddress": "<string>", "fiatPaymentInstructions": { "cvu": "0000465160000000070078" }, "transactions": [ { "transactionId": "21d8a046-3221-4b43-a301-0f9adcdd9a45", "createdAt": "2023-11-07T05:31:56Z", "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "quoteId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "fromCurrency": "ARS", "toCurrency": "USDC", "amount": "<string>", "chain": "ETHEREUM_SEPOLIA", "paymentMethodType": "wire", "depositAddress": "<string>", "status": "WITHDRAWAL_PENDING", "externalRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "metadata": {}, "txnHash": null } ] } ] }
Retrieves a list of all on-ramp sessions.
Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.
Authorization: Bearer <access_token>
A paginated list of on-ramp sessions.
Total number of items across all pages.
URL to the next page of results. Null if no next page.
URL to the previous page of results. Null if no previous page.
Array of On-Ramp session objects for the current page.
Show child attributes
Was this page helpful?