> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mf-atlas.space/llms.txt
> Use this file to discover all available pages before exploring further.

# KYC PAN check

> Real-time, single-PAN KRA lookup (NSE utility KYC_CHECK). Does not require an investor record to exist.



## OpenAPI

````yaml /openapi.yaml get /api/kyc/v1/pan-check
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security: []
paths:
  /api/kyc/v1/pan-check:
    get:
      tags:
        - kyc
      summary: KYC PAN check
      description: >-
        Real-time, single-PAN KRA lookup (NSE utility KYC_CHECK). Does not
        require an investor record to exist.
      parameters:
        - description: ''
          in: query
          name: pan
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  entry_date:
                    type: string
                  kra_name:
                    type: string
                  kyc_status:
                    description: NSE's raw single-letter KRA status code, e.g. F.
                    type: string
                  kyc_status_remark:
                    type: string
                  modification_date:
                    type: string
                  name:
                    type: string
                  pan:
                    type: string
                  status_date:
                    type: string
                type: object
          description: KYC check

````