Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token authentication using JWT format |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
trn_number | String | Yes | The UAE Tax Registration Number to be verified |
{
"trn_number": "100247583003"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the client making the request |
data.trn_number | String | The TRN number that was verified |
data.legal_name | String | The legal name of the entity associated with the TRN |
data.legal_name_list | Array | List of legal names associated with the TRN |
data.trn_status | Boolean | Indicates whether the TRN is valid (true) or invalid (false) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates whether the API request was successful |
message | String | Human-readable description of the response status |
message_code | String | Machine-readable code representing the response status |
{
"data": {
"client_id": "uae_trn_cZwtvbvgsarbGejxnmAR",
"trn_number": "1002600000",
"legal_name": "LLC",
"legal_name_list": [
"LLC"
],
"trn_status": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": {
"client_id": "uae_trn_cZwtvbvgsarbGejxnmAR",
"trn_number": "1002600001",
"legal_name": null,
"legal_name_list": [],
"trn_status": false
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/uae-trn/verification' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"trn_number": "100247583003"
}'
{
"data": {
"client_id": "uae_trn_cZwtvbvgsarbGejxnmAR",
"trn_number": "1002600000",
"legal_name": "LLC",
"legal_name_list": [
"LLC"
],
"trn_status": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}