Skip to main content
POST
/
v2
/
verification
/
pan-gst-link
PAN-GST Link Verification
curl --request POST \
  --url https://bgv.konnectnxt.com/api/v2/verification/pan-gst-link/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pan_number": "AABCI6363G"
}
'
{
  "status": "success",
  "code": 200,
  "message": "Operation completed successfully",
  "data": {
    "gst_associated_with_pan": true,
    "gst_registrations": [
      {
        "gstin": "27AABCI6363G1ZJ",
        "status": "ACTIVE",
        "state": "Maharashtra"
      }
    ]
  },
  "credits_used": 10,
  "credits_remaining": 984096.5
}

Overview

Verify if a PAN number is associated with GST registrations and retrieve all linked GSTIN details including status and state information.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
pan_number
string
required

PAN number to check for GST linkage

Required string length: 10
Pattern: ^[A-Z]{5}[0-9]{4}[A-Z]$
Example:

"AABCI6363G"

Response

Success Response

status
enum<string>
required

Overall status of the API

Available options:
success,
error
code
integer
required

HTTP status code

Example:

400

message
string
required

Description of the response or error

Example:

"Invalid request parameters"

credits_used
integer
required

Represents the total number of credits used in this request.

Example:

3

credits_left
integer
required

Represents the remaining credits available for use.

Example:

4040

data
object