Shop & Establishment Certificate Verification
Verify a Shop and Establishment registration certificate. Confirm business legitimacy with registration details and validity status.
curl -X GET "https://production.deepvue.tech/v1/business-compliance/shop-establishment-certificate?certificate_number=example_string&state_code=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/shop-establishment-certificate?certificate_number=example_string&state_code=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/shop-establishment-certificate?certificate_number=example_string&state_code=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/shop-establishment-certificate?certificate_number=example_string&state_code=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/shop-establishment-certificate?certificate_number=example_string&state_code=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": 1738342962129,
"transaction_id": "e4c1d5597c924ee3b03854343734e884",
"sub_code": "SUCCESS",
"message": "S&E Certificate Verified Successfully.",
"data": {
"client_id": "se_oWoreXNvdvhhlYlkxcHe",
"se_number": "34/156/CE/0058/2023",
"state_code": "KR",
"state_name": "Karnataka",
"business_name": "ACS CATERERS",
"address": null,
"user_mobile_number": "9845235360",
"registration_number": "34/156/CE/0058/2023",
"registration_date": null,
"category": null,
"certificate_number": "34/156/CE/0058/2023",
"document_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/shop-docs/34/156/CE/0058/2023/34-156-CE-0058-2023-2025-02-03-062133-2025-02-03-062133812126.pdf",
"date_of_commencement": null,
"valid_upto": null,
"acknowledgement_number": "849916",
"email_id": null,
"website_url": null,
"name_of_occupier": null,
"father_name_of_occupier": null,
"manager_name": null,
"manager_father_name": null,
"male_workers": null,
"female_workers": null,
"young_workers": null,
"total_workers": null,
"family_members_working": null,
"confidential_employers_capacity": null,
"fax": null
}
}
{
"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": 1738183354954,
"transaction_id": "3d90ffd05e224332b4667e4f40f8fd3a",
"sub_code": "INVALID_STATE_CODE",
"message": "Invalid State Code."
}
{
"code": 422,
"timestamp": 1738183354954,
"transaction_id": "3d90ffd05e224332b4667e4f40f8fd3a",
"sub_code": "VERIFICATION_FAILED",
"message": "Verification Failed."
}
{
"detail": "Internal Server Error"
}
{
"code": 500,
"timestamp": 1738342962129,
"transaction_id": "e4c1d5597c924ee3b03854343734e884",
"sub_code": "SOURCE_FAILURE",
"message": "Source failure. Unable to validate."
}
/v1/business-compliance/shop-establishment-certificate
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
This API enables verification of Shop Establishment Certificates. The service accepts a certificate number and state code to validate the credentials against official records.
Supported states
The API covers nine Indian states: Delhi, Haryana, Jammu and Kashmir, Karnataka, Rajasthan, Telangana, Uttarakhand, Uttar Pradesh, and West Bengal. Each state has a two-letter code used as a required query parameter.
Upon successful verification, the API returns comprehensive business information including the SE number, business name, registration details, mobile number, acknowledgement number, and a document link to the certificate PDF.
Many response fields are optional and may return null values depending on the state and registration details available.
Last updated 4 weeks ago
Built with Documentation.AI