GSTPAN To GST

PAN to GSTIN Lookup — Find Linked GSTINs

Search for all GSTINs linked to a PAN number. Discover the complete GST footprint of any business or individual.

curl -X GET "https://production.deepvue.tech/v1/verification/gstin/gstin-by-pan?pan_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1738183354983,
  "transaction_id": "7f366ec230f34c809c53cda8d4506eb4",
  "sub_code": "SUCCESS",
  "message": "Linked GSTINs fetched successfully.",
  "data": [
    {
      "gstin": "24AAHFJ8299B1Z7",
      "state": "Gujarat",
      "state_code": "24",
      "status": "Active"
    }
  ]
}
GET
/v1/verification/gstin/gstin-by-pan
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

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

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataarray

Overview

The Search GSTIN by PAN endpoint enables businesses to retrieve all GST-registered entities linked to a specific PAN (Permanent Account Number). Unlike a standard GSTIN search which returns details for a single GST entity, this API provides the information of all the business entities that are associated with that corresponding PAN.

The API accepts a PAN number as input and responds with comprehensive details about every GST registration tied to that PAN, including:

  • GSTIN identifier
  • Associated state and state code
  • Current registration status

While the standard Search GSTIN API focuses on a particular GST entity by its GSTIN, this PAN-based variant delivers a complete picture of all entities under one PAN registration, making it valuable for multi-entity business verification scenarios.