HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. Verification Suite
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • Verification Suite
    • Digilocker
      • Initiate
      • Check Status
      • Download Aadhaar
    • Aadhaar
      • Send OTP
      • Verify OTP
    • UPI Verification
      POST
    • Bank Verification
      POST
    • PAN Verification
      POST
    • GSTIN Verification
      POST
  • NSDL Account Opening
    • BC Agent Onboarding
      POST
    • Create Account
      POST
    • Account Status
      GET
  • Comunications API
    • Send SMS OTP
      POST
    • Send Whatsapp OTP
      POST
  1. Verification Suite

PAN Verification

POST
/api/v1/verification/pan-verify

PAN Card Verification#

Verify a customer’s PAN to validate existence, type (Individual/Business), and name as per official records. Use this to power KYC, onboarding, and risk checks before enabling financial services.

Request

Header Params

Body Params application/json

Example
{
    "pan_number": "PANCY8711F"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/verification/pan-verify' \
--header 'x-client-id: {{client_id}}' \
--header 'x-client-secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pan_number": "PANCY8711F"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 200,
    "status": "success",
    "message": "Success",
    "data": {
        "request_id": "PANVFR20200820250918_8b71fb14",
        "pan_number": "PANCY8711F",
        "holder_name": "JOHN DOE",
        "dob": "01/01/1980",
        "note": "PAN validation successful — the PAN is valid and registered.",
        "status": "verified"
    },
    "meta": {
        "request_id": "e4a5651c-312b-4a66-be74-e71e0bcca74e",
        "time": "2025-09-18T20:20:08+05:30"
    }
}
🟠422Validation Error
🟠400Bad Request
Previous
Bank Verification
Next
GSTIN Verification
Built with