Skip to main content
GET
/
wallet
/
rates
rates - Get wallet rates
curl --request GET \
  --url https://api.ripio.com/wallet/rates/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": [
    {
      "ticker": "BTC_ARS",
      "base_currency_balance_id": 1,
      "quote_currency_balance_id": 2,
      "buy_rate": "98000000.00",
      "sell_rate": "95000000.00",
      "variation": "1.25"
    }
  ]
}

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.

Response

Wallet rates retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object[]
required