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

# Retrieve Verification

> Retrieves a single identity verification profile by its idpf_ tag.



## OpenAPI

````yaml /openapi/api-v1-native.yml get /verifications/{verification_id}
openapi: 3.1.0
info:
  title: Whop API
  description: >-
    Hand-written V1 endpoints. Merged into the GraphqlRestProxy-generated schema
    at build time.
  version: v1
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.whop.com/api/v1
security: []
paths:
  /verifications/{verification_id}:
    parameters:
      - $ref: '#/components/parameters/ApiVersionDate'
    get:
      tags:
        - Verifications
      summary: Retrieve Verification
      description: Retrieves a single identity verification profile by its idpf_ tag.
      operationId: getVerification
      parameters:
        - name: verification_id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the verification, which will look like idpf_*************
      responses:
        '200':
          description: verification retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: The verification ID, e.g. idpf_*
                  kind:
                    type: string
                    enum:
                      - individual
                      - business
                  status:
                    type: string
                    enum:
                      - not_started
                      - pending
                      - approved
                      - rejected
                      - action_required
                  first_name:
                    type:
                      - string
                      - 'null'
                  last_name:
                    type:
                      - string
                      - 'null'
                  date_of_birth:
                    type:
                      - string
                      - 'null'
                  business_name:
                    type:
                      - string
                      - 'null'
                  business_structure:
                    type:
                      - string
                      - 'null'
                  country:
                    type:
                      - string
                      - 'null'
                    description: >-
                      ISO 3166-1 alpha-2 country code (e.g. `US`, `GB`). For
                      individuals this is the country of citizenship or
                      residence reported by the identity provider; for
                      businesses this is the country of incorporation.
                  address:
                    type:
                      - object
                      - 'null'
                  session_url:
                    type:
                      - string
                      - 'null'
                  requested_information:
                    type: array
                    description: >-
                      The outstanding information this verification still needs
                      — payout RFIs and audit RMIs, one uniform shape.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: >-
                            The requested information item id (inrqi_*). Use
                            this when answering.
                        field:
                          type: string
                          description: >-
                            Stable snake_case key for the field (e.g. ssn,
                            business_description).
                        type:
                          type:
                            - string
                            - 'null'
                          description: >-
                            How to render the input: text, date, phone, address,
                            files, or select.
                        label:
                          type: string
                          description: >-
                            Human-readable label for the field (e.g. "Social
                            Security Number").
                        description:
                          type:
                            - string
                            - 'null'
                          description: Additional guidance for the field beyond the label.
                        requested_files:
                          type: array
                          description: >-
                            Upload slots for a files item — always at least one
                            when type is `files`, empty otherwise.
                          items:
                            type: object
                            properties:
                              label:
                                type: string
                                description: >-
                                  Label for this upload slot (e.g. "Front of ID
                                  Document").
                              category:
                                type:
                                  - string
                                  - 'null'
                                description: >-
                                  Identifier to send back with the uploaded file
                                  so it routes correctly; null for a generic
                                  upload.
                              kind:
                                type:
                                  - string
                                  - 'null'
                                description: >-
                                  Provider-specific document kind, when
                                  applicable.
                              is_optional:
                                type: boolean
                                description: Whether this slot can be left empty.
                              multiple:
                                type: boolean
                                description: Whether this slot accepts more than one file.
                        options:
                          type: array
                          description: >-
                            Allowed values for a `select` field (e.g.
                            account_type, business_structure) — the submitted
                            value must be one of these; empty for other types.
                          items:
                            type: string
                        error_message:
                          type:
                            - string
                            - 'null'
                          description: >-
                            The reason a previously submitted value was
                            rejected, or null.
                  created_at:
                    type: string
                  updated_at:
                    type: string
        '401':
          $ref: '#/components/responses/Unauthorized'
          description: missing or invalid authentication
        '404':
          $ref: '#/components/responses/NotFound'
          description: no verification with that ID is visible to the credential
      security:
        - bearerAuth:
            - identity:read
components:
  parameters:
    ApiVersionDate:
      name: Api-Version-Date
      in: header
      required: false
      schema:
        type: string
        format: date
        example: '2026-07-01'
      description: Pins the request to a dated API version.
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/V1ErrorResponse'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/V1ErrorResponse'
  schemas:
    V1ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              description: Machine-readable error code.
            message:
              type: string
              description: Human-readable error message.
          required:
            - type
            - message
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: auth-scheme
      description: >-
        An account API key, account scoped JWT, app API key, or user OAuth
        token.

````