- 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 Financial Assessment Config
Testing
GET
/config/financial-assessment
get_financial_assessment
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 '/config/financial-assessment' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array[string]
required
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": {
"financial_assessment": {
"estimated_net_worth": [
"Less than $10,000",
"$10,001 - $25,000",
"$25,001 - $50,000",
"$50,001 - $75,000",
"$75,001 - $100,000",
"$100,001 - $250,000",
"$250,001 - $500,000",
"Over $500,000"
],
"industry_of_employment": [
"Environment & Agriculture",
"Finance & Law",
"Healthcase",
"Public Services",
"Recruitment & HR",
"IT"
],
"investment_in_trading": [
"Less than $10,000",
"$10,001 - $25,000",
"$25,001 - $50,000",
"$50,001 - $75,000",
"$75,001 - $100,000",
"$100,001 - $250,000",
"$250,001 - $500,000",
"Over $500,000"
],
"net_annual_income": [
"Less than $10,000",
"$10,001 - $25,000",
"$25,001 - $50,000",
"$50,001 - $75,000",
"$75,001 - $100,000",
"$100,001 - $250,000",
"$250,001 - $500,000",
"Over $500,000"
],
"occupation": [
"Government Employee/Public Sector Worker",
"Teacher/Academic",
"Healthcare Professional (Doctor, Nurse, Pharmacist)",
"Engineer/Technical Professional",
"IT Professional/Software Developer",
"Legal Professional (Lawyer, Paralegal)",
"Accountant/Auditor",
"Marketing/Advertising Professional",
"Small Business Owner",
"Freelancer / Consultant",
"Real Estate Developer / Agent"
],
"source_of_income": [
"Salary",
"Inheritance",
"Savings",
"Pension",
"Dividends",
"Other"
],
"source_of_wealth": [
"Salary",
"Inheritance",
"Savings",
"Pension",
"Dividends",
"Other"
]
}
},
"meta": {
"endpoint": "/config/financial-assessment",
"method": "GET",
"timing": 917
}
}
Modified at 2025-02-06 08:23:14