Skip to main content
GET
/
wallet
/
transactions
transactions - List transactions
curl --request GET \
  --url https://api.ripio.com/wallet/transactions/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": {
    "results": [
      {
        "id": 12345,
        "operation_type": "WITHDRAWAL",
        "txn_type": "WIT",
        "gateway": "bank-transfer-cvu",
        "from_currency": "ARS",
        "to_currency": "ARS",
        "fiat_currency": "ARS",
        "fee": "0.00",
        "fee_fiat": "0.00",
        "rate": "1.00",
        "rate_usd": "0.00",
        "amount_from": "5000.00",
        "amount_to": "5000.00",
        "amount_fiat": "5000.00",
        "amount_usd": "0.00",
        "status": "COM",
        "created_at": "2026-04-13T12:00:00",
        "updated_at": "2026-04-13T12:01:00",
        "extra_data": {},
        "external_id": null,
        "gateway_details": null,
        "gateway_detail": null,
        "fee_currency": "ARS",
        "origin": null,
        "destination": null,
        "tax": "0",
        "tax_currency": null
      }
    ],
    "nc": "cD0yMDI2LTAyLTI0KzAw...",
    "pc": null
  }
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Query Parameters

gateway
string

Filter by gateway identifier (e.g. crypto, bank-transfer-cvu, pix).

payment_method_id
string

Filter by payment method ID.

currency
string

Filter by currency ticker. Matches against both the fiat currency (currency) and the crypto currency (crypto_currency) of the transaction (e.g. ARS, BTC, USDT).

txn_type
string

Filter by raw transaction type as stored in the database.

cursor
string

Opaque cursor token for pagination. Use the nc value from the previous response to fetch the next page, or pc for the previous page. Omit to start from the first page.

Example:

"cD0yMDI2LTAyLTI0KzAw..."

Response

Transaction list retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object
required