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 | JWT Bearer token for authentication. Format: Bearer <your_token> |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | String | Yes | The FSSAI license number to be verified |
{
"id_number": "123400150004321"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the verification results |
| data.client_id | String | Unique identifier for this verification request |
| data.fssai_number | String | The FSSAI number that was verified |
| data.details | Array | Array containing license details |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | Human-readable status message |
| message_code | String | Machine-readable status code |
| Parameter | Type | Description |
|---|---|---|
| address | String | Registered address of the FSSAI license holder |
| license_no | String | FSSAI license number |
| fbo_id | Integer | Food Business Operator ID as per FSSAI records |
| display_ref_id | String | Company display reference number |
| license_category_name | String | FSSAI license registration category name |
| state_name | String | State where the license is registered |
| status_desc | String | License status description (e.g., "License Issued") |
| license_category_id | Integer | Numeric identifier for license category |
| company_name | String | Registered name of the company |
| license_active_flag | Boolean | Indicates if the license is currently active |
| ref_id | Integer | FSSAI reference ID |
| app_type_desc | String | FSSAI application registration type |
| premise_pincode | Integer | Postal code of the registered premises |
{
"data": {
"client_id": "corporate_fssai_xodcLhZpvunkpIBiytEC",
"fssai_number": "123400150004321",
"details": [
{
"address": "MANGUSHREE COMPLEX",
"license_no": "123400150004321",
"fbo_id": 1234567,
"display_ref_id": "1234520005254321",
"license_category_name": "Registration",
"state_name": "Bengal",
"status_desc": "License Issued",
"license_category_id": 3,
"company_name": "SUR ENTERPRISE",
"license_active_flag": false,
"ref_id": 987654321,
"app_type_desc": "New Registration",
"premise_pincode": 123456
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 400,
"success": false,
"message": "Invalid FSSAI license number format",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/fssai' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "123400150004321"
}'{
"data": {
"client_id": "corporate_fssai_xodcLhZpvunkpIBiytEC",
"fssai_number": "123400150004321",
"details": [
{
"address": "MANGUSHREE COMPLEX",
"license_no": "123400150004321",
"fbo_id": 1234567,
"display_ref_id": "1234520005254321",
"license_category_name": "Registration",
"state_name": "Bengal",
"status_desc": "License Issued",
"license_category_id": 3,
"company_name": "SUR ENTERPRISE",
"license_active_flag": false,
"ref_id": 987654321,
"app_type_desc": "New Registration",
"premise_pincode": 123456
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}