- 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
Configs
Testing
GET
/configs
configs
Last modified:2025-02-06 08:23:14
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 '/configs' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {9}]Â
required
id
integerÂ
required
key
stringÂ
required
value
stringÂ
required
type
stringÂ
required
description
stringÂ
required
created_time
stringÂ
required
updated_time
string  | nullÂ
required
staff_identifier
string  | nullÂ
required
reason
string  | nullÂ
required
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"id": 2,
"key": "restricted_countries",
"value": "[\"as\",\"by\",\"be\",\"bv\",\"ca\",\"cu\",\"gg\",\"gu\",\"hk\",\"gs\",\"ae\",\"gb\"]",
"type": "json",
"description": "list of restricted countries",
"created_at": "2024-10-16T05:23:03.593684",
"updated_at": "2024-10-21T03:58:18.196896"
},
{
"id": 201,
"key": "transfer_fee_percentage",
"value": "2",
"type": "numeric",
"description": "specifies the percentage fee applied to transfers involving currency conversion.",
"created_at": "2024-11-19T03:00:15.401322",
"updated_at": null
},
{
"id": 8,
"key": "currency_details",
"value": "[{\"code\":\"USD\",\"cashiers\":[\"premier_cashier\",\"p2p\",\"payment_agents\"],\"label\":\"US Dollar\",\"type\":\"fiat\"},{\"code\":\"EUR\",\"cashiers\":[\"premier_cashier\"],\"label\":\"Euro\",\"type\":\"fiat\"},{\"code\":\"BTC\",\"cashiers\":[\"coinremitter\"],\"label\":\"Bitcoin\",\"type\":\"crypto\"},{\"code\":\"USDC\",\"cashiers\":[\"coinremitter\"],\"label\":\"USD Coin\",\"type\":\"crypto\"},{\"code\":\"ETH\",\"cashiers\":[\"coinremitter\"],\"label\":\"Ethereum\",\"type\":\"crypto\"},{\"code\":\"LTC\",\"cashiers\":[\"coinremitter\"],\"label\":\"Litecoin\",\"type\":\"crypto\"}]",
"type": "json",
"description": "list of currency details",
"created_at": "2024-11-11T08:39:44.72325",
"updated_at": null
}
],
"meta": {
"endpoint": "/configs",
"method": "GET",
"timing": 467
}
}
Modified at 2025-02-06 08:23:14