Feel free to reach techsupport@surepass.io for any technical support or guidance.
client_id generated during the initial request.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 YOUR_JWT_TOKEN |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| client_id | string | Yes | Unique identifier returned from the initial PAN-Udyam verification request. Used to retrieve the status of the verification process. Format: pan_udyam_check_async_{unique_id} |
{
"client_id": "pan_udyam_check_async_WsHoFrce"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object holding the verification results |
| data.client_id | string | The unique client identifier used for the verification request |
| data.pan_number | string | The PAN (Permanent Account Number) that was verified |
| data.status | string | Status of the verification process. Possible values: success, pending, failed |
| data.udyam_exists | boolean | Indicates whether a valid Udyam registration exists for the provided PAN |
| data.migration_status | string | Indicates if the business has migrated from Udyog Aadhaar to Udyam. Possible values: migrated, not_migrated |
| status_code | integer | HTTP status code of the response (200 for Success) |
| success | boolean | Indicates whether the API call was successful |
| message | string | Human-readable message describing the response status |
| message_code | string | Machine-readable code for the response status |
{
"data": {
"client_id": "pan_udyam_check_async_WsHoFrc",
"pan_number": "ABBCS1234D",
"status": "success",
"udyam_exists": true,
"migration_status": "migrated"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"success": false,
"status_code": 400,
"message": "Invalid client_id provided",
"message_code": "invalid_client_id"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan-udyam-check/status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "pan_udyam_check_async_WsHoFrce"
}'{
"data": {
"client_id": "pan_udyam_check_async_WsHoFrc",
"pan_number": "ABBCS1234D",
"status": "success",
"udyam_exists": true,
"migration_status": "migrated"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}