Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for API authentication. Format: Bearer <JWT_TOKEN> |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| pan_number | String | Yes | Valid 10-character PAN number of the business entity. Format: 5 letters, 4 digits, 1 letter (e.g., ABBCS1234D) |
| full_name | String | Yes | Complete registered business name as per official records. Must match the name associated with the PAN |
| dob | String | Yes | Date of incorporation or registration of the business. Format: YYYY-MM-DD (e.g., 2000-08-23) |
{
"pan_number": "ABBCS1234D",
"full_name": "Smart Analytics Services Pvt Ltd",
"dob": "2000-08-23"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Container object holding the verification response data |
| data.client_id | String | Unique identifier for tracking this verification request. Use this ID to poll for results |
| data.status | String | Current status of the verification process. Initial value is typically "pending" |
| status_code | Integer | HTTP status code indicating the result of the API call |
| success | Boolean | Indicates whether the API request was successful (true) or failed (false) |
| message | String | Human-readable message describing the result of the operation |
| message_code | String | Machine-readable code for programmatic handling of responses |
{
"data": {
"client_id": "pan_udyam_check_async_WsHoFrce",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 401,
"success": false,
"message": "Unauthorized access",
"message_code": "unauthorized"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan-udyam-check/initialize' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"pan_number": "ABBCS1234D",
"full_name": "Smart Analytics Services Pvt Ltd",
"dob": "2000-08-23"
}'{
"data": {
"client_id": "pan_udyam_check_async_WsHoFrce",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}