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

# Get Verification

> Retrieve a single verification by ID



## OpenAPI

````yaml GET /v1/identity/verifications/{id}
openapi: 3.1.0
info:
  title: Beltic Identity API
  version: 1.0.0
  description: >-
    # Identity API


    The Beltic Identity API provides identity management capabilities including
    accounts, sessions, document verification, and identity verifications.


    ## Key Features


    - **Account Management**: Create and manage identity accounts

    - **Session Management**: Create and manage verification sessions with
    lifecycle controls

    - **Document Verification**: Submit and process identity documents
    (government IDs, proof of address)

    - **Identity Verification**: Run identity, address, and business
    verifications

    - **JSON:API Format**: All responses follow JSON:API specification


    ## Authentication


    All endpoints require authentication. Include your API key in the
    `X-Api-Key` header:

    ```

    X-Api-Key: YOUR_API_KEY

    ```


    ## Response Format


    All responses follow the JSON:API specification for consistent data
    structures.
  contact:
    name: Beltic API Support
    email: engineering@beltic.com
servers:
  - url: https://api.beltic.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Accounts
    description: Account management operations
  - name: Sessions
    description: Session management operations
  - name: Session Devices
    description: Session device management operations
  - name: Document Addresses
    description: Proof of address document management operations
  - name: Document IDVs
    description: Government ID verification document management operations
  - name: Verifications
    description: Base verification resource operations
externalDocs:
  description: Beltic Platform Documentation
  url: https://docs.beltic.com
paths:
  /v1/identity/verifications/{id}:
    get:
      tags:
        - Verifications
      summary: Get a verification
      description: Retrieve a single verification by ID
      parameters:
        - schema:
            type: string
            description: Verification ID
            example: 123e4567-e89b-12d3-a456-426614174000
          required: true
          description: Verification ID
          name: id
          in: path
      responses:
        '200':
          description: Verification retrieved successfully
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                        enum:
                          - verification
                      attributes:
                        type: object
                        properties:
                          status:
                            type: string
                            enum:
                              - initiated
                              - passed
                              - failed
                              - requires_retry
                              - canceled
                          created_at:
                            type: string
                          submitted_at:
                            type: string
                          completed_at:
                            type: string
                          redacted_at:
                            type:
                              - string
                              - 'null'
                          checks:
                            type: array
                            items:
                              type: object
                              properties:
                                name:
                                  type: string
                                status:
                                  type: string
                                  enum:
                                    - not_applicable
                                    - passed
                                    - failed
                                reasons:
                                  type: array
                                  items:
                                    type: string
                                requirement:
                                  type: string
                                  enum:
                                    - not_required
                                    - required
                                    - requires_retry
                                metadata:
                                  type: object
                                  additionalProperties: {}
                              required:
                                - name
                                - status
                                - reasons
                                - requirement
                                - metadata
                        required:
                          - status
                          - created_at
                          - checks
                      relationships:
                        type: object
                        properties:
                          session:
                            type: object
                            properties:
                              data:
                                type:
                                  - object
                                  - 'null'
                                properties:
                                  type:
                                    type: string
                                    enum:
                                      - session
                                  id:
                                    type: string
                                required:
                                  - type
                                  - id
                            required:
                              - data
                        required:
                          - session
                    required:
                      - id
                      - type
                      - attributes
                      - relationships
                required:
                  - data
        '404':
          description: Verification not found
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        status:
                          type: string
                        title:
                          type: string
                        detail:
                          type: string
                      required:
                        - status
                        - title
                        - detail
                required:
                  - errors
        '500':
          description: Internal server error
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        status:
                          type: string
                        title:
                          type: string
                        detail:
                          type: string
                      required:
                        - status
                        - title
                        - detail
                required:
                  - errors
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: |-
        API key for authentication.
        Access https://console.beltic.com/ to obtain your API key.

````