Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header using the format Bearer <YOUR_JWT_TOKEN>.| Environment | Base URL |
|---|---|
| Sandbox | https://sandbox.surepass.app |
| Production | https://kyc-api.surepass.app |
Note: Ensure you use the JWT token issued for the correct environment. Sandbox tokens will not work against the Production API and vice versa.
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer token in the format Bearer <YOUR_JWT_TOKEN> |
Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
id_number | string | Yes | The FSSAI license number for which the Non Form C Annexure certificate is to be retrieved. |
{
"id_number": "22819012011312"
}| Parameter | Type | Description |
|---|---|---|
success | boolean | Indicates whether the API request was successful. |
status_code | integer | HTTP status code of the response (e.g., 200 for success). |
message | string | Human-readable message describing the result of the request. |
message_code | string | Machine-readable code for the response status (e.g., success). |
data | object | Contains the response payload when the request is successful. |
data.client_id | string | A unique identifier generated for this specific request. |
data.id_number | string | The FSSAI license number submitted in the request. |
data.certificate_link | string | A pre-signed, time-limited URL pointing to the FSSAI Non Form C Annexure PDF certificate stored in cloud storage. The URL expires after 600 seconds (10 minutes). |
{
"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"
}{
"status_code": 401,
"success": false,
"message": "Authentication credentials were not provided or are invalid.",
"message_code": "unauthorized"
}Authorization header is missing, malformed, or contains an invalid/expired JWT token. Ensure the Bearer token is valid and belongs to the correct environment (sandbox or production).certificate_link URL expires after 600 seconds. Download or process the PDF immediately after receiving the response, and do not cache the URL for future use.id_number format before submitting to the API to reduce unnecessary API calls and potential errors.client_id for support and audit purposes: Store the client_id returned in each response to help trace and debug specific requests with the Surepass support team.message_code values to user-friendly messages rather than surfacing raw API errors.client_id values, to support audit trails and regulatory inquiries as required by your organization's data governance policies.curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/fssai-non-form-c-annexure' \
--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"
}