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 authentication. Format: Bearer <JWT_TOKEN> |
Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
id_number | string | Yes | The FSSAI license number to verify. Example: 22819012011312 |
{
"id_number": "22819012011312"
}| Parameter | Type | Description |
|---|---|---|
data | object | Contains the verification result payload |
data.client_id | string | Unique identifier assigned to this verification request by Surepass |
data.id_number | string | The FSSAI license number that was submitted in the request |
data.certificate_link | string | A pre-signed, time-limited AWS S3 URL pointing to the FSSAI Form C / Non-Form C Annexure PDF. Valid for 600 seconds from the time of generation |
status_code | integer | HTTP-equivalent status code for the API response (e.g., 200 for success) |
success | boolean | Indicates whether the request was processed successfully (true / false) |
message | string | Human-readable status message (e.g., "Success") |
message_code | string | Machine-readable status code for the response (e.g., "success") |
{
"data": {
"client_id": "fssai_non_form_c_annexure_unfxytjyiOGrUdgbjPZD",
"id_number": "22819012011312",
"certificate_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/fssai_form_3/105813727/fssai_non_form_c_annexure_unfxytjyiOGrUdgbjPZD-2026-03-26-110019253624.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5KVPBYKKE%2F20260326%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20260326T110019Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=767656da9fe885841b806e1db3f50e1e2b983ad73e0d3114fe84a4e8b2d8ce9a"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 401,
"success": false,
"message": "Authentication credentials were not provided or are invalid.",
"message_code": "unauthorized"
}Authorization header as Bearer <JWT_TOKEN>.certificate_link is a pre-signed S3 URL that expires after 600 seconds. Store the PDF on your own infrastructure if long-term access is required.certificate_link after 600 seconds, prompt them to re-initiate the verification rather than displaying a raw AWS error.message_code values rather than raw HTTP status codes.client_id for audit trail and support purposes so verification events can be traced back to specific requests.certificate_link are for verification purposes only and should not be redistributed or published without authorization.client_id) in accordance with your organization's data retention policies and applicable compliance requirements.https://sandbox.surepass.app) exclusively for development and testing. Never use production credentials or real license numbers in sandbox calls.curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/fssai-form-c' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "22819012011312"
}'{
"data": {
"client_id": "fssai_non_form_c_annexure_unfxytjyiOGrUdgbjPZD",
"id_number": "22819012011312",
"certificate_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/fssai_form_3/105813727/fssai_non_form_c_annexure_unfxytjyiOGrUdgbjPZD-2026-03-26-110019253624.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5KVPBYKKE%2F20260326%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20260326T110019Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=767656da9fe885841b806e1db3f50e1e2b983ad73e0d3114fe84a4e8b2d8ce9a"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}