Skip to main content
GET
/
api
/
v1
/
transactions
/
List All Orders (On-Ramp & Off-Ramp)
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/transactions/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "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>.

Query Parameters

type
enum<string>

Filter orders by type.

Available options:
ONRAMP,
OFFRAMP
status
enum<string>

Filter orders by status.

Available options:
PENDING,
PROCESSING,
COMPLETED,
CANCELLED,
REFUNDED
limit
integer
default:100

Maximum number of items to return.

Required range: x >= 1
offset
integer

Starting point to limit the total items to return (for pagination).

Required range: x >= 0

Response

A paginated list of transactions. The structure of each object in the transactions array depends on its type (OnRamp or OffRamp).

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.

transactions
object[]

Array of order objects (both On-Ramp and Off-Ramp) for the current page.

  • Option 1
  • Option 2