- 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
Get Currency Rules
Testing
GET
/config/currency
get_currency_rules
Last modified:15 days ago
Request
Query Params
Name
Type
Required
Description
currency
string
Example:
USD
Header Params
Name
Type
Required
Description
Authorization
string
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
string
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
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
curl --location --request GET '/config/currency?currency=USD' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200OK
application/json
Body
data
array [object {6}]
required
cashiers
array[string]
optional
currency
object
optional
fee
object
optional
label
string
optional
limit
object
optional
type
string
optional
meta
object
required
endpoint
string
required
method
string
required
timing
integer
required
Example
{
"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
}
}
🟠404Invalid currency
Modified at 15 days ago