- Deriv Core
- Auth
- Config
- Client
- Get Client System StatusGET
- Get Onboarding StatusGET
- Create TNCPOST
- Get Client Financial AssessmentGET
- Update Financial AssessmentPUT
- Get Client Tax InformationGET
- Create Client Tax InformationPOST
- Update Client Tax InformationPUT
- Create Client ProfilePOST
- Get Client ProfileGET
- Create Client AddressPOST
- Get Client AccountsGET
- Update ProfilePUT
- Get AddressGET
- Get Total BalanceGET
- Create Financial AssessmentPOST
- Get Client StatusGET
- Get Login HistoryGET
- Update Client AddressPUT
- Upload Client ProfilePOST
- Wallet
- KYC
- Payment
- Fiat Payment
- Platform
- Auth
- Brand
Exchange Rates
Testing
GET
/payment/exchange-rates
exchange_rates
Last modified:2025-03-07 02:58:31
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/payment/exchange-rates' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {3}]Â
required
code
stringÂ
required
name
stringÂ
required
price
integer  | numberÂ
required
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"code": "BTC",
"name": "Bitcoin",
"price": 66866
},
{
"code": "LTC",
"name": "Litecoin",
"price": 69.64
},
{
"code": "BCH",
"name": "Bitcoin Cash",
"price": 353.08
},
{
"code": "ETH",
"name": "Ethereum",
"price": 2521.03
},
{
"code": "DOGE",
"name": "DogeCoin",
"price": 0.137811
},
{
"code": "TCN",
"name": "Test Coin",
"price": 1
},
{
"code": "DASH",
"name": "Dash",
"price": 22.99
},
{
"code": "USDTERC20",
"name": "Tether USD ERC20",
"price": 1
},
{
"code": "BNB",
"name": "Binance Coin",
"price": 587.59
},
{
"code": "TRX",
"name": "Tron",
"price": 0.162905
},
{
"code": "USDTTRC20",
"name": "Tether USD TRC20",
"price": 1
},
{
"code": "ZANO",
"name": "Zano",
"price": 6.18
}
],
"meta": {
"method": "exchange-rates",
"base_currency": "USD",
"timing": 100
}
}
🟠401Unauthorized
Modified at 2025-03-07 02:58:31