FSSAI License Verification — Food Business Check
Verify an FSSAI license and retrieve the food business name, address, license type, and validity. Ensure food safety compliance.
curl -X GET "https://production.deepvue.tech/v1/business-compliance/fssai-verification?fssai_id=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://production.deepvue.tech/v1/business-compliance/fssai-verification?fssai_id=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v1/business-compliance/fssai-verification?fssai_id=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v1/business-compliance/fssai-verification?fssai_id=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v1/business-compliance/fssai-verification?fssai_id=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"code": 200,
"timestamp": 1738210452861,
"transaction_id": "5a223ce2c64a439aab009c38246f9ba8",
"sub_code": "SUCCESS",
"message": "FSSAI verified successfully.",
"data": {
"id_number": "21524010000507",
"application_number": "30240523116619907",
"fssai_number": "21524010000507",
"details": [
{
"address_premises": "SHOP NO-F/37,1ST FLR,SEZ PLAZA BLOCK SECTOR MARVE ROAD MALAD WEST, Marve Erangel, Greater Mumbai Ward-P/N, Greater Mumbai, Maharashtra, 400064",
"status_desc": "Registration Certificate issued",
"district_name": "Greater Mumbai",
"fbo_id": 599743778735406,
"display_ref_id": "30240523116619907",
"taluk_name": "Greater Mumbai Ward-P/N",
"company_name": "KRISHNAA AGRO LLP",
"state_premises": "MH",
"district_premises": 458,
"app_type_desc": "New License/New Registration",
"taluk_premises": 4169,
"state_name": "Maharashtra",
"license_category_name": "Registration",
"app_type": "N",
"app_submission_date": "2024-05-23",
"last_updated_on": "2024-06-01",
"pincode": 400064,
"ref_id": 116619907
}
]
}
}
{
"code": 200,
"timestamp": 1732221224417,
"transaction_id": "54605be1cb2441989e8ccc8e6a04270c",
"sub_code": "INVALID_FSSAI_ID",
"message": "Invalid FSSAI ID."
}
{
"detail": "Not authenticated"
}
{
"detail": "Invalid client_id, access Denied"
}
{
"detail": "Could not validate credentials"
}
{
"detail": "Incorrect client_id or client_secret"
}
{
"detail": "Not a valid token"
}
{
"detail": "Access forbidden"
}
{
"code": 422,
"timestamp": 1738210452861,
"transaction_id": "5a223ce2c64a439aab009c38246f9ba8",
"sub_code": "INVALID_INPUT",
"message": "Invalid Fssai Id Pattern."
}
{
"detail": "Internal Server Error"
}
{
"code": 500,
"timestamp": null,
"transaction_id": "string",
"sub_code": "SOURCE_FAILURE",
"message": "Source failure. Unable to validate."
}
/v1/business-compliance/fssai-verification
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
Responses
Overview
The FSSAI Verification API validates Food Safety and Standards Authority of India identification numbers and license credentials. It retrieves official registration and licensing information for food business operations registered with FSSAI.
This verification tool confirms the authenticity of FSSAI ID/License Numbers by querying the official FSSAI database. Upon successful verification, the system returns comprehensive business details including:
- Business registration and application information
- Physical premises address and location identifiers
- Company/FBO (Food Business Operator) identification
- License category classification
- Registration status and certification details
- Application submission and update timestamps
- Geographic information (state, district, taluk, pincode)
The API accepts a single required query parameter: the FSSAI identification number in the proper format. Malformed FSSAI patterns trigger validation errors.
Last updated 4 weeks ago
Built with Documentation.AI