> ## 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.

# List Verifications for Account

> Lists identity verification profiles for an account.



## OpenAPI

````yaml /openapi/api-v1-native.yml get /verifications
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:
    parameters:
      - $ref: '#/components/parameters/ApiVersionDate'
    get:
      tags:
        - Verifications
      summary: List Verifications for Account
      description: Lists identity verification profiles for an account.
      operationId: listVerifications
      parameters:
        - name: account_id
          in: query
          required: true
          schema:
            type: string
          description: The account ID to list verifications for (biz_ tag).
        - name: order
          in: query
          required: false
          schema:
            type: string
            enum:
              - updated_at
              - created_at
            default: updated_at
          description: The field to sort verifications by.
        - name: direction
          in: query
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
          required: false
          description: Sort direction.
      responses:
        '200':
          description: verifications listed
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      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
        '400':
          $ref: '#/components/responses/InvalidParameters'
          description: missing account_id
        '401':
          $ref: '#/components/responses/Unauthorized'
          description: missing or invalid authentication
        '403':
          $ref: '#/components/responses/Forbidden'
          description: credential lacks the required identity-read scope
      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:
    InvalidParameters:
      description: Invalid Parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/V1ErrorResponse'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/V1ErrorResponse'
    Forbidden:
      description: Forbidden
      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.

````