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

# Fetch single company verification

> Fetch the current state of a single company verification created by the current API key. The `id` path can be either the internal company verification ID or the public company verification ID.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/company-verifications/{id}
openapi: 3.0.0
info:
  title: Helium Id Public API v1
  version: 1.0.0
  description: API reference for Helium ID public verification endpoints.
servers:
  - url: https://server.heliumid.io/api
security:
  - ApiKeyAuth: []
paths:
  /v1/company-verifications/{id}:
    parameters:
      - $ref: '#/components/parameters/CompanyVerificationId'
    get:
      summary: Fetch single company verification
      description: >-
        Fetch the current state of a single company verification created by the
        current API key. The `id` path can be either the internal company
        verification ID or the public company verification ID.
      responses:
        '200':
          description: Fetched a single company verification.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelopeSingleCompanyVerification'
              example:
                status: true
                message: Fetched single company verification
                data:
                  id: 69d4f7657bcbe3b58b96b2f7
                  verificationId: cv_0b5f6f4e0aab25d8c130ab21
                  externalId: cv_0b5f6f4e0aab25d8c130ab21
                  status: under review
                  reason: ''
                  vendorData: business_12345
                  userMeta:
                    applicationId: app_67890
                  campaignId: cmp_64ff2f3f4f31d4d5f2ab1234
                  campaignVersion: 3
                  businessProfile:
                    companyName: Acme Limited
                    countryOfRegistration: NGA
                  representativeProfile:
                    legalFirstName: Jane
                    legalSurname: Doe
                  authorityProfile:
                    livenessStatus: completed
                    livenessVerificationId: 69d830f88c8373aa37c95974
                  progress:
                    currentStep: 6
                    submittedAt: '2026-08-18T12:00:00.000Z'
                  createdAt: '2026-08-18T10:15:00.000Z'
                  updatedAt: '2026-08-18T12:30:00.000Z'
                code: 200
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    CompanyVerificationId:
      name: id
      in: path
      required: true
      description: >-
        The internal company verification ID or the public company verification
        ID returned as `verificationId` when the session was created.
      schema:
        type: string
      example: cv_0b5f6f4e0aab25d8c130ab21
  schemas:
    SuccessEnvelopeSingleCompanyVerification:
      type: object
      properties:
        status:
          type: boolean
          example: true
        message:
          type: string
          example: Fetched single company verification
        data:
          $ref: '#/components/schemas/CompanyVerificationRecord'
        code:
          type: integer
          example: 200
    CompanyVerificationRecord:
      type: object
      properties:
        id:
          type: string
          description: Internal company verification record ID.
        verificationId:
          type: string
          description: >-
            Public company verification ID. This is the same value as
            `externalId`.
        externalId:
          type: string
        status:
          type: string
          enum:
            - not started
            - started
            - submitted
            - under review
            - abandoned
            - successful
            - failed
        reason:
          type: string
        vendorData:
          type: string
        userMeta:
          type: object
          additionalProperties: true
        redirect:
          type: string
        webhookUrl:
          type: string
        campaignId:
          type: string
        campaignVersion:
          type: integer
        businessProfile:
          type: object
          additionalProperties: true
        representativeProfile:
          type: object
          additionalProperties: true
        documents:
          type: object
          additionalProperties: true
        uploadedDocuments:
          type: array
          items:
            type: object
            additionalProperties: true
        extractedProfile:
          type: object
          additionalProperties: true
        ownershipProfile:
          type: object
          additionalProperties: true
        authorityProfile:
          type: object
          additionalProperties: true
        additionalInformation:
          type: object
          additionalProperties: true
        analysis:
          type: object
          additionalProperties: true
        progress:
          type: object
          additionalProperties: true
        auditTrail:
          type: array
          items:
            type: object
            additionalProperties: true
        customQuestionAnswers:
          type: array
          items:
            type: object
            additionalProperties: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        status:
          type: boolean
          example: false
        message:
          type: string
        error:
          type: object
          nullable: true
          additionalProperties: true
        data:
          nullable: true
        code:
          type: integer
  responses:
    BadRequest:
      description: The request payload, identifier, or state transition is invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            status: false
            message: Verification not found or has been deleted
            code: 400
    Unauthorized:
      description: The request could not be authenticated with the supplied API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            status: false
            message: Unauthorized
            code: 401
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Helium ID API key.

````