PAN to MSME Status — Udyam Registration Check
Check if a PAN has an active Udyam MSME registration. Retrieve enterprise category, NIC code, and registration date.
curl -X GET "https://production.deepvue.tech/v1/verification/pan-msme-check?pan_number=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/verification/pan-msme-check?pan_number=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/verification/pan-msme-check?pan_number=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/verification/pan-msme-check?pan_number=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/verification/pan-msme-check?pan_number=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": 1738238378221,
"transaction_id": "3622dd90249a4e058cad04b81589ac89",
"sub_code": "SUCCESS",
"message": "Pan to Msme Check performed successfully.",
"data": {
"pan_number": "AFVPG9986M",
"udyam_exists": true,
"migration_status": null,
"pan_details": {
"full_name": "BHIVA GANGARAM GAWAS",
"full_name_split": [
"BHIVA",
"GANGARAM",
"GAWAS"
],
"masked_aadhaar": "XXXXXXXX1712",
"gender": "M",
"dob": "1965-08-15",
"aadhaar_linked": true,
"category": "person",
"status": "valid"
}
}
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738180009762,
"transaction_id": "4ddcb24ffe8a4ae39bf27e317b4327d3",
"sub_code": "INVALID_INPUT",
"message": "Invalid Pan Pattern."
}
{
"detail": "Internal Server Error"
}
{
"code": null,
"timestamp": null,
"transaction_id": "string",
"message": "Source Unavailable"
}
/v1/verification/pan-msme-check
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 whether a business has registered MSME status linked to a specific PAN (Permanent Account Number) and whether that registration has been migrated to the current Udyam Portal system.
The PAN-MSME Check API determines two key pieces of information:
- Whether an MSME registration exists for a given business PAN
- The migration status of that MSME to the latest Udyam Portal platform
Successful API calls return comprehensive business and individual information, including:
- The queried PAN number
- MSME existence confirmation status
- Migration status to Udyam Portal
- Associated PAN holder details (full name with name components separated, masked Aadhaar, gender, date of birth, Aadhaar linking status, entity category, and PAN validity status)
Last updated 4 weeks ago
Built with Documentation.AI