> ## 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 company verifications

> Fetch company verifications created by the current API key. Results are paginated and ordered by most recently updated.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/company-verifications
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:
    get:
      summary: Fetch company verifications
      description: >-
        Fetch company verifications created by the current API key. Results are
        paginated and ordered by most recently updated.
      parameters:
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Fetched company verification sessions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelopeCompanyVerificationList'
              example:
                status: true
                message: Fetched company verifications
                data:
                  - id: 69d4f7657bcbe3b58b96b2f7
                    verificationId: cv_0b5f6f4e0aab25d8c130ab21
                    externalId: cv_0b5f6f4e0aab25d8c130ab21
                    status: submitted
                    reason: ''
                    vendorData: business_12345
                    userMeta:
                      applicationId: app_67890
                    campaignId: cmp_64ff2f3f4f31d4d5f2ab1234
                    campaignVersion: 3
                    businessProfile:
                      companyName: Acme Limited
                      countryOfRegistration: NGA
                    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:00:00.000Z'
                meta:
                  total: 1
                  page: 1
                  limit: 10
                  totalPages: 1
                code: 200
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    Page:
      name: page
      in: query
      required: false
      description: Page number for paginated verification results.
      schema:
        type: integer
        minimum: 1
        default: 1
    Limit:
      name: limit
      in: query
      required: false
      description: Maximum number of verification records to return per page.
      schema:
        type: integer
        minimum: 1
        default: 10
  schemas:
    SuccessEnvelopeCompanyVerificationList:
      type: object
      properties:
        status:
          type: boolean
          example: true
        message:
          type: string
          example: Fetched company verifications
        data:
          type: array
          items:
            $ref: '#/components/schemas/CompanyVerificationRecord'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
        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
    PaginationMeta:
      type: object
      properties:
        total:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        totalPages:
          type: integer
    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.

````