/b2b/rates
Get buy and sell rates for multiple cryptocurrencies at once
Query Parameters
- Type: boolean
is _amount _without _fee Return rates without fee included.
Responses
- application/json
- application/json
- application/json
- application/json
- application/json
Request Example for get/b2b/rates
curl 'https://sandbox-api.mrcr.io/v1.6/b2b/rates?is_amount_without_fee=false' \
--header 'Sdk-Partner-Token: YOUR_SECRET_TOKEN'
{
"status": 200,
"data": {
"buy": {
"BTC": {
"EUR": "21911.6609477232",
"GBP": "19523.0518434642"
},
"ETH": {
"EUR": "1536.91999999991420300000",
"GBP": "1369.36999999998135600000"
}
},
"sell": {
"BTC": {
"EUR": "21911.6609477232"
}
}
}
}