- 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 Client Profile
Testing
GET
/client/profile
get_client_profile
Last modified:2025-02-06 08:23:13
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 '/client/profile' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {17}]Â
required
client_id
integerÂ
optional
address_id
nullÂ
optional
first_name
stringÂ
optional
last_name
stringÂ
optional
date_of_birth
stringÂ
optional
birth_country
stringÂ
optional
account_opening_reason
stringÂ
optional
employment_status
stringÂ
optional
residence_country
stringÂ
optional
citizen_country
stringÂ
optional
tax_residence_country
stringÂ
optional
tax_identification_number
stringÂ
optional
gender
stringÂ
optional
staff_identifier
string  | nullÂ
optional
reason
string  | nullÂ
optional
created_time
stringÂ
optional
updated_time
string  | nullÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"client_id": 79,
"address_id": null,
"first_name": "API",
"last_name": "Dog",
"date_of_birth": "1947-09-19",
"birth_country": "in",
"account_opening_reason": "hedging",
"employment_status": "employed",
"residence_country": "in",
"citizen_country": "in",
"tax_residence_country": "in",
"tax_identification_number": "HM1989389",
"gender": "male",
"staff_identifier": "QA",
"reason": "api test",
"created_time": "2024-11-06T03:42:29.865314",
"updated_time": "2024-11-07T09:04:30.411948"
}
],
"meta": {
"endpoint": "/client/profile",
"method": "GET",
"timing": 489
}
}
🟠401Invalid auth key
Modified at 2025-02-06 08:23:13