Fintech APIs & Platform for KYC, Verification & Transactions in India | Eko Platform Services
Eko Platform Services Logo

POSTFetch PAN Details

Fetch the PAN holder's registered full name and category from the PAN number alone.

POST/tools/kyc/fetch-pan

Fetch PAN is the lightest PAN lookup: pass only the PAN number and get back the registered full name, the holder category (person / company / firm …) and the PAN status. Unlike PAN Lite and PAN Advanced — which require the PAN number, holder name and date of birth to compute match flags — this endpoint needs no name or DOB, so use it when you have to discover the holder's name rather than verify one you already hold.

Request

Body parameters

initiator_idstringRequired

Registered mobile number of the API user (see Platform Credentials).

example: 9962981729

client_ref_idstringoptional

Unique reference ID per API call, generated by your system (max 20 characters).

example: 2026010100123456789

pan_numberstringRequired· PAN Number

10-character alphanumeric PAN identifier (5 letters, 4 digits, 1 letter).

example: GGTPB7880Q

sourcestringoptional

Origin of the request. Use 'API' for server-to-server calls.

example: API

Responses

  • statusnumber

    Primary success indicator (0 = success).

  • messagestring

    Human-readable response / error message.

  • response_status_idnumber

    Granular status id; see the shared error-codes table.

  • response_type_idnumber

    A unique id for every possible response shape (success or error) — useful for client logic branching and analytics.

  • dataobject

    API-specific response payload.

    • upstream_rrnstring

      Reference number of the lookup at the upstream source.

    • pan_nostring

      The PAN number submitted in the request.

    • fullnamestring

      Full name registered against the PAN.

    • categorystring

      PAN holder category, e.g. 'person', 'company', 'firm', 'trust', 'huf'.

    • statusstring

      Outcome of the PAN lookup, e.g. 'success'.

Next steps

NextPOSTPAN LiteInstant PAN validation with name and DOB match scores plus Aadhaar seeding status.

Related