Skip to main content
GET
/
api
/
v1
/
offrampSession
/
List Off-Ramp Sessions
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>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Response

A paginated list of off-ramp sessions.

count
integer

Total number of items across all pages.

next
string<uri> | null

URL to the next page of results. Null if no next page.

previous
string<uri> | null

URL to the previous page of results. Null if no previous page.

results
object[]

Array of Off-Ramp session objects for the current page.