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

# Verification Status

> Retrieves the verification status for a specific phone number based on Twilio caller ID validation.



## OpenAPI

````yaml GET /verification-status/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /verification-status/:
    get:
      summary: Get Verification Status
      description: >-
        Retrieves the verification status for a specific phone number based on
        Twilio caller ID validation.
      parameters:
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
        - name: phone_number
          in: query
          required: true
          description: The phone number to check verification status for (URL encoded)
          schema:
            type: string
            example: '+919999728776'
      responses:
        '200':
          description: Verification status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationStatusResponse'
        '400':
          description: Missing or invalid phone number
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    VerificationStatusResponse:
      type: object
      properties:
        phone_number:
          type: string
          description: The phone number being verified
          example: '+919999008776'
        validation_code:
          type: string
          description: The Twilio validation code sent to verify the phone number
          example: '838171'
        twilio_sid:
          type:
            - string
            - 'null'
          description: Twilio SID associated with the phone number if available
          example: null
        is_verified:
          type: boolean
          description: Indicates whether the phone number is verified
          example: false
        created_at:
          type: string
          format: date-time
          description: Timestamp of when the verification process started
          example: '2025-08-26T09:22:32.928114Z'
        friendly_name:
          type:
            - string
            - 'null'
          description: A user-defined name for the phone number
          example: null
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````