- 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
Verify
Testing
POST
/verify
verify
Last modified:2025-02-19 07:24:47
Request
Header Params
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
token
stringÂ
required
type
enum<string>Â
required
Allowed values:
emailphone
Example:
email
email
stringÂ
optional
Example:
user@example.com
phone
stringÂ
optional
Example:
+1234567890
Example
{
"token": "123456",
"type": "email",
"email": "Ca**************@******.com"
}
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 POST '/verify' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "123456",
"type": "email",
"email": "Ca**************@******.com"
}'
Responses
🟢200Success
application/json
Body
data
array [object {6}]Â
optional
access_token
stringÂ
optional
token_type
stringÂ
optional
expires_in
integerÂ
optional
expires_at
integerÂ
optional
refresh_token
stringÂ
optional
user
objectÂ
optional
meta
objectÂ
optional
endpoint
stringÂ
optional
method
stringÂ
optional
timing
integerÂ
optional
Example
{
"data": [
{
"access_token": "eyJhbGciOiJIUzI****************************************************************************************************************************************************************************************************************************************I1cGEOaZ13to",
"token_type": "bearer",
"expires_in": 604800,
"expires_at": 1732505323,
"refresh_token": "-N1Egwc3********************5jMDwA",
"user": {
"id": "a74a57ee-*****-****-****-86022****7026",
"aud": "authenticated",
"role": "authenticated",
"email": "mo******************@********.com",
"email_confirmed_at": "2024-11-18T03:28:43.696546Z",
"phone": "",
"confirmation_sent_at": "2024-11-18T03:25:32.373435Z",
"confirmed_at": "2024-11-18T03:28:43.696546Z",
"last_sign_in_at": "2024-11-18T03:28:43.703608Z",
"app_metadata": {
"provider": "email",
"providers": [
"email"
]
},
"user_metadata": {
"email": "mo******************@********.com",
"email_verified": false,
"phone_verified": false,
"sub": "a74a57ee-*****-****-****-86022****7026"
},
"identities": [
{
"identity_id": "0a478d07-****-*****-****-b373****ae5",
"id": "a74a57ee-*****-****-****-86022****7026",
"user_id": "a74a57ee-*****-****-****-86022****7026",
"identity_data": {
"email": "mo******************@********.com",
"email_verified": false,
"phone_verified": false,
"sub": "a74a57ee-*****-****-****-86022****7026"
},
"provider": "email",
"last_sign_in_at": "2024-11-18T03:25:32.36801Z",
"created_at": "2024-11-18T03:25:32.36807Z",
"updated_at": "2024-11-18T03:25:32.36807Z",
"email": "mo******************@********.com"
}
],
"created_at": "2024-11-18T03:25:32.359527Z",
"updated_at": "2024-11-18T03:28:43.859926Z",
"is_anonymous": false
}
}
],
"meta": {
"endpoint": "/verify",
"method": "POST",
"timing": 419
}
}
🟠400Invalid Token
Modified at 2025-02-19 07:24:47