GET
/
api
/
v1
/
rates
/
Get Market Rates
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/rates/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "pair": "ETH_ARS",
    "last_buy_rate": 1312.1,
    "last_sell_rate": 1311.1,
    "final_buy_rate": 1320.1,
    "final_sell_rate": 1320.1
  }
]

Authorizations

Authorization
string
header
required

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

Response

An array of pairs with their associated buy and sell rates.

pair
string
required

Base currency and Quote currency used to establish the exchange rate.

Example:

"ETH_ARS"

last_buy_rate
number
required

Last Buy market rate.

last_sell_rate
number
required

Last Sell market rate.

final_buy_rate
number
required

Represents the last buy market rate with fees applied.

final_sell_rate
number
required

Represents the last sell market rate with fees applied.