cURL
curl --request GET \ --url https://skala-sandbox.ripio.com/api/v1/offrampSession/ \ --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", "toCurrency": "<string>", "paymentMethodType": "<string>", "fiatAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "depositAddresses": [ { "chain": "ETHEREUM", "address": "0x1234567890AbCdEf1234567890AbCdEf1234567890" } ], "transactions": [ { "transactionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "createdAt": "2023-11-07T05:31:56Z", "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "quoteId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "fromCurrency": "USDC", "toCurrency": "ARS", "amount": "<string>", "chain": "ETHEREUM", "status": "<string>", "txnHash": "<string>" } ] } ] }
Retrieves a list of all off-ramp sessions.
Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.
Authorization: Bearer <access_token>
A paginated list of off-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 Off-Ramp session objects for the current page.
Show child attributes
Was this page helpful?