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 API authentication (JWT format) |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | string | Yes | FSSAI license number (14-digit identifier) |
| get_products | boolean | No | Flag to include product categories in response (default: false) |
| get_license_active_flag | boolean | No | Flag to include license active in response (default: false) |
{
"id_number": "45678912345678",
"get_products": true,
"get_license_active_flag": true
}| Parameter | Type | Description |
|---|---|---|
| data.client_id | string | Unique client identifier for the API request |
| data.id_number | string | FSSAI license number that was verified |
| data.reference_id | integer | Internal reference ID for the business entity |
| data.kind_of_business | string | Business category classification (e.g., Manufacturing - Beverages) |
| data.details.company_name | string | Registered business name |
| data.details.taluk_name | string | Taluk/Sub-district name where business is located |
| data.details.taluk_premises | integer | Number of premises in the taluk |
| data.details.number_of_years | integer | Years of business operation |
| data.details.district_name | string | District name of business location |
| data.details.district_premises | integer | Number of premises in the district |
| data.details.state_name | string | State name of business location |
| data.details.state_premises | string | State code abbreviation |
| data.details.designation_name | string | Owner/operator designation (e.g., Proprietor) |
| data.details.full_name | string | Full name of the license holder |
| data.details.certificate_number | string | FSSAI certificate number |
| data.details.license_category_name | string | License category (Central/State/Local) |
| data.details.issued_date | string | License issue date (YYYY-MM-DD format) |
| data.details.expiry_date | string | License expiry date (YYYY-MM-DD format) |
| data.details.fbo_id | integer | Food Business Operator ID |
| data.details.app_submission_date | string | Application submission date |
| data.details.last_updated_on | string | Last update timestamp |
| data.details.address | string | Complete business address |
| data.details.status_desc | string | License status description |
| data.details.app_type_desc | string | Application type description |
| data.details.app_type | string | Application type code |
| data.details.pincode | integer | Postal code of business location |
| data.details.products | array | List of authorized product categories |
| data.details.license_active_flag | boolean | License active status indicator |
| status_code | integer | HTTP status code |
| success | boolean | Request success indicator |
| message | string | Response message |
| message_code | string | Response message code |
{
"data": {
"client_id": "corporate_fssai_v3_ovuibNCaHzKfcaxlUrKr",
"id_number": "45678912345678",
"reference_id": 987654321,
"kind_of_business": "Manufacturing - Beverages",
"details": {
"company_name": "Sharma Beverages Pvt Ltd",
"taluk_name": "Vijayanagar",
"taluk_premises": 2211,
"number_of_years": 5,
"district_name": "Bengaluru Urban",
"district_premises": 120,
"state_name": "Karnataka",
"state_premises": "KA",
"designation_name": "Proprietor",
"full_name": "Rohit Sharma",
"certificate_number": "45678912345678",
"license_category_name": "Central License",
"issued_date": "2022-06-15",
"expiry_date": "2027-06-14",
"fbo_id": 87654321,
"app_submission_date": "2022-05-10",
"last_updated_on": "2022-06-15",
"address": "45, MG Road, Vijayanagar, Bengaluru Urban, Karnataka, 560040",
"status_desc": "License Active",
"app_type_desc": "New License",
"app_type": "N",
"pincode": 560040,
"products": [
"14 - Non-alcoholic beverages",
"07 - Bakery products"
],
"license_active_flag": true
}
},
"status_code": 200,
"success": true,
"message": "Success",
"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-v3' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "45678912345678",
"get_products": true,
"get_license_active_flag": true
}'{
"data": {
"client_id": "corporate_fssai_v3_ovuibNCaHzKfcaxlUrKr",
"id_number": "45678912345678",
"reference_id": 987654321,
"kind_of_business": "Manufacturing - Beverages",
"details": {
"company_name": "Sharma Beverages Pvt Ltd",
"taluk_name": "Vijayanagar",
"taluk_premises": 2211,
"number_of_years": 5,
"district_name": "Bengaluru Urban",
"district_premises": 120,
"state_name": "Karnataka",
"state_premises": "KA",
"designation_name": "Proprietor",
"full_name": "Rohit Sharma",
"certificate_number": "45678912345678",
"license_category_name": "Central License",
"issued_date": "2022-06-15",
"expiry_date": "2027-06-14",
"fbo_id": 87654321,
"app_submission_date": "2022-05-10",
"last_updated_on": "2022-06-15",
"address": "45, MG Road, Vijayanagar, Bengaluru Urban, Karnataka, 560040",
"status_desc": "License Active",
"app_type_desc": "New License",
"app_type": "N",
"pincode": 560040,
"products": [
"14 - Non-alcoholic beverages",
"07 - Bakery products"
],
"license_active_flag": true
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}