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 (JWT format) |
| Content-Type | Yes | application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | String | Yes | FSSAI license number to be verified |
{
"id_number": "22819015001312"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the verification results |
| data.client_id | String | Unique client identifier for the request |
| data.id_number | String | FSSAI license number that was verified |
| data.application_number | String | FSSAI application number |
| data.fssai_number | String | FSSAI license number |
| data.details | Array | Array containing detailed information about the FSSAI license |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | Additional message (null if successful) |
| message_code | String | Code indicating the status of the request |
| Parameter | Type | Description |
|---|---|---|
| address_premises | String | Company address |
| status_desc | String | FSSAI license status description |
| district_name | String | Company district name |
| fbo_id | Integer | Food Business Operators ID |
| display_ref_id | String | Display reference ID number |
| taluk_name | String | Taluka name |
| company_name | String | Company name |
| state_premises | String | State premises code |
| district_premises | Integer | District premises code |
| app_type_desc | String | Application type description |
| taluk_premises | Integer | Taluka premises code |
| state_name | String | State name |
| license_category_name | String | License category name |
| app_type | String | Application type code |
| app_submission_date | String | Application submission date (YYYY-MM-DD) |
| last_updated_on | String | Last update date (YYYY-MM-DD) |
| pincode | Integer | Postal code |
| ref_id | Integer | Reference ID number |
{
"data": {
"client_id": "corporate_fssai_v2_tzsqcAruluLulxsjlrqs",
"id_number": "00009015001234",
"application_number": "00001207002500000",
"fssai_number": "00009015001234",
"details": [
{
"address_premises": "West Bengal, 721602",
"status_desc": "Registration Certificate issued",
"district_name": "Medinipur",
"fbo_id": 000111,
"display_ref_id": "00001207002500000",
"taluk_name": "MUNICIPALITY",
"company_name": "S ENTERPRISE",
"state_premises": "WB",
"district_premises": 000,
"app_type_desc": "New License/New Registration",
"taluk_premises": 12345,
"state_name": "Bengal",
"license_category_name": "Registration",
"app_type": "N",
"app_submission_date": "2000-00-07",
"last_updated_on": "2000-00-07",
"pincode": 12345,
"ref_id": 98765432
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}{
"status_code": 422,
"success": false,
"message": "Verification Failed.",
"message_code": "verification_failed"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/fssai-v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "22819015001312"
}'{
"data": {
"client_id": "corporate_fssai_v2_tzsqcAruluLulxsjlrqs",
"id_number": "00009015001234",
"application_number": "00001207002500000",
"fssai_number": "00009015001234",
"details": [
{
"address_premises": "West Bengal, 721602",
"status_desc": "Registration Certificate issued",
"district_name": "Medinipur",
"fbo_id": 000111,
"display_ref_id": "00001207002500000",
"taluk_name": "MUNICIPALITY",
"company_name": "S ENTERPRISE",
"state_premises": "WB",
"district_premises": 000,
"app_type_desc": "New License/New Registration",
"taluk_premises": 12345,
"state_name": "Bengal",
"license_category_name": "Registration",
"app_type": "N",
"app_submission_date": "2000-00-07",
"last_updated_on": "2000-00-07",
"pincode": 12345,
"ref_id": 98765432
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}