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 |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
pan_number | String | Yes | PAN Number of the business entity |
full_name | String | Yes | Full name of the business entity |
dob | String | Yes | Date of incorporation in "YYYY-MM-DD" format |
{
"pan_number": "ABBCS1234D",
"full_name": "SURJAL PRIVATE LIMITED",
"dob": "2018-11-15"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | PAN number that was verified |
data.udyam_exists | Boolean | Indicates whether Udyam registration exists for the PAN |
data.migration_status | String | Status of migration from old MSME system to Udyam portal (values: "migrated" or "not_migrated") |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String or null | Additional information about the response (if any) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "pan_udyam_check_nlGIZduXrlnwWuYfbznH",
"pan_number": "ABBCS1234D",
"udyam_exists": true,
"migration_status": "migrated"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid PAN number format",
"message_code": "invalid_pan_format"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/pan-udyam-check' \
--header 'Content-Type: application/json' \
--data-raw '{
"pan_number": "ABBCS1234D",
"full_name": "SURJAL PRIVATE LIMITED",
"dob": "2018-11-15"
}'
{
"data": {
"client_id": "pan_udyam_check_nlGIZduXrlnwWuYfbznH",
"pan_number": "ABBCS1234D",
"udyam_exists": true,
"migration_status": "migrated"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}