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

# Get Phone Numbers

> Retrieve a list of phone numbers for the specified client



## OpenAPI

````yaml get /clients/{clientId}/phone-numbers
openapi: 3.0.1
info:
  title: ChatDash Webhook API Documentation
  description: API Documentation for the ChatDash Webhook Subscription System
  version: 1.0.0
servers:
  - url: https://api.chat-dash.com/v1/public
security: []
paths:
  /clients/{clientId}/phone-numbers:
    get:
      tags:
        - Phone Numbers
      summary: Get Phone Numbers
      description: Retrieve a list of phone numbers for the specified client
      parameters:
        - name: Authorization
          in: header
          required: true
          description: Client-specific API key for authentication
          schema:
            type: string
            pattern: ^CD\.CL\.
        - name: clientId
          in: path
          required: true
          description: Client ID to retrieve phone numbers for
          schema:
            type: string
        - name: agentId
          in: query
          required: true
          description: Filter phone numbers by associated agent ID
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PhoneNumber'
        '500':
          description: Internal Server Error
          content: {}
components:
  schemas:
    PhoneNumber:
      type: object
      properties:
        _id:
          type: string
          description: The ID of the phone number
        clientId:
          type: string
          description: The ID of the client associated with the phone number
        platform:
          type: string
          description: The platform this phone number is associated with (Retell/Vapi)
        platformId:
          type: string
          description: The ID of the phone number on the platform
        apiKey:
          type: string
          description: The platform API key associated with the phone number
        number:
          type: string
          description: The phone number in E.164 format
        type:
          type: string
          description: The type of phone number (assigned or imported)

````