---
title: "Verify PAN details"
method: POST
path: "/verify/pan_verification"
tags: ["PAN Verification"]
---

# Verify PAN details

`POST /verify/pan_verification`

Accepts a PAN number and returns a normalized verification result. The response includes confirmed identity fields (where available), verification status, and flags used for billing and user consent. This endpoint requires both X-API-KEY and X-Client-ID headers for authentication.

## Request body

- VerifyPanRequest
  - `pan_number` string, required — PAN to verify. Must follow the 10-character PAN format (five letters, four digits, one letter). Example: ACGPA1234K

## Response `200`

PAN verification result. Returns normalized identity data and processing flags.

- VerifyPanResponse
  - `pan_number` string, required — The PAN provided in the request (echoed back).
  - `full_name` string — Full name associated with the PAN, when available.
  - `dob` string, date, nullable — Date of birth associated with the PAN record, in ISO 8601 date format (YYYY-MM-DD). Null when not available.
  - `gender` string, nullable — Gender value from the PAN record (e.g., M, F, or other), or null if not provided.
  - `category` string — Category of the PAN holder. Typical values: person or business.
  - `status` string, required — Verification status. Typical values: success, failure, partial.
  - `chargeable` boolean, required — Indicates whether this verification operation should be billed to the client.
  - `user_consent` boolean, required — Indicates whether the user has provided consent for this verification action (if required by flow).

## Other responses

- `400` — Bad request — missing or invalid PAN format.
- `401` — Unauthorized — invalid or missing API credentials.
- `404` — Not found — no record found for the supplied PAN.
- `500` — Internal server error — unexpected error while processing the request.

---

[API](https://skmtc.dev/idto/apis/verification-api.md) · [All operations](https://skmtc.dev/idto/apis/verification-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/idto/verification-api/revisions/e3d57dab8db4/schema)
