Get Currency Rules
Testing
GET
/config/currency
get_currency_rules
Last modified:2025-03-12 03:17:29
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-core.deriv.com/v1/config/currency?currency=USD' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Response Response Example
200 - Success
{
"data": [
{
"cashiers": [
"premier_cashier",
"p2p",
"payment_agents"
],
"currency": {
"enabled": false
},
"fee": {
"transfer": {
"crypto_percentage": 2,
"fiat_percentage": 0,
"stablecoin_percentage": 1
}
},
"label": "US Dollar",
"limit": {
"deposit": {
"min_amount_in_base_currency": 10
},
"transfer": {
"max_amount_per_transaction": 10000,
"min_amount_per_transaction": 1,
"number_of_daily_transfers": 10,
"volatility": 0.1
},
"withdrawal": {
"min_amount_in_base_currency": 10,
"number_of_daily_withdrawal": 5
}
},
"type": "fiat"
}
],
"meta": {
"endpoint": "/config/currency",
"method": "GET",
"timing": 33
}
}
Request
Query Params
currency
string
optional
Example:
USD
Header Params
Authorization
string
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
string
optional
Default:
{{RL_EXCLUSION_KEY}}
Responses
Modified at 2025-03-12 03:17:29