- 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 Address
Testing
GET
/client/address
get_address
Last modified:2025-02-06 08:23:15
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/address' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {11}]Â
required
id
integerÂ
optional
client_id
integerÂ
optional
address_line_1
stringÂ
optional
address_line_2
stringÂ
optional
state_province
stringÂ
optional
city
stringÂ
optional
zip_postal_code
stringÂ
optional
staff_identifier
nullÂ
optional
reason
nullÂ
optional
created_time
stringÂ
optional
updated_time
nullÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"id": 91,
"client_id": 187,
"address_line_1": "Area 51",
"address_line_2": "Rachel",
"state_province": "Nevada",
"city": "Nevada",
"zip_postal_code": "89044",
"staff_identifier": null,
"reason": null,
"created_time": "2024-11-27T04:20:30.326039",
"updated_time": null
}
],
"meta": {
"endpoint": "/client/address",
"method": "GET",
"timing": 479
}
}
🟠401Unauthorised
Modified at 2025-02-06 08:23:15