Miscellaneous
Get Rates
API Documentation
Wallet Management
Address Operations
- GETGet Addresses
- POSTGenerate Address
- GETGet Address
- PATCHUpdate Address
- POSTWhitelist address
- DELUnwhitelist address
- GETGet Balance
- GETGet Balances
- GETGet transactions
- POSTWithdraw Network Fee
- POSTWithdraw
- POSTGet Swap Quote
- POSTSwap Execute
- POSTCustom Smart Contract Network Fee
- POSTCustom Smart Contract Read
- POSTCustom Smart Contract Write
Withdrawals
Custom Smart Contracts
Asset Management
Transactions
AML(Anti Money Laundering)
Auto Settlements
Asset Recovery
Payment Links
Miscellaneous
Miscellaneous
Get Rates
This endpoint retrieves the current rates of specified assets in the given currency.
GET
/
v1
/
assets
/
rates
curl --request GET \
--url https://api.blockradar.co/v1/assets/rates \
--header 'x-api-key: <api-key>'
{
"data": {
"BUSD": {
"USD": 0.9997
},
"DAI": {
"USD": 0.9998
},
"USDC": {
"USD": 0.9997
},
"USDT": {
"USD": 0.9997
}
},
"message": "Rates retrieved successfully",
"statusCode": 200
}
Authorizations
Response
200 - application/json
200
The response is of type object
.
curl --request GET \
--url https://api.blockradar.co/v1/assets/rates \
--header 'x-api-key: <api-key>'
{
"data": {
"BUSD": {
"USD": 0.9997
},
"DAI": {
"USD": 0.9998
},
"USDC": {
"USD": 0.9997
},
"USDT": {
"USD": 0.9997
}
},
"message": "Rates retrieved successfully",
"statusCode": 200
}