Skip to main content
GET
/
api
/
v1
/
onrampSession
/
List On-Ramp Sessions
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",
          "metadata": {},
          "txnHash": null,
          "paymentMethodType": "wire",
          "depositAddress": "<string>",
          "status": "WITHDRAWAL_PENDING",
          "externalRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

A paginated list of on-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 On-Ramp session objects for the current page.