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

# Get Phone Number

> Fetch one phone number, including its current agent binding and
provisioning status.



## OpenAPI

````yaml get /v1/agent/phone-numbers/{phone_number_id}
openapi: 3.1.0
info:
  title: FishAudio OpenAPI
  version: '1'
servers:
  - description: Fish Audio API
    url: https://api.fish.audio
security: []
tags: []
paths:
  /v1/agent/phone-numbers/{phone_number_id}:
    get:
      tags:
        - Phone Numbers
      summary: Get Phone Number
      description: |-
        Fetch one phone number, including its current agent binding and
        provisioning status.
      parameters:
        - in: path
          name: phone_number_id
          description: ''
          required: true
          schema:
            title: Phone Number Id
            type: string
          deprecated: false
      responses:
        '200':
          description: Request fulfilled, document follows
          headers: {}
          content:
            application/json:
              schema:
                properties:
                  phone_number_id:
                    title: Phone Number Id
                    type: string
                  workspace_id:
                    title: Workspace Id
                    type: string
                  phone_number:
                    description: E.164, e.g. +14155550123.
                    title: Phone Number
                    type: string
                  provider:
                    enum:
                      - livekit
                      - twilio
                    title: Provider
                    type: string
                  label:
                    default: ''
                    title: Label
                    type: string
                  agent_id:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: >-
                      Inbound calls route to this agent; unbound numbers ring
                      busy.
                    title: Agent Id
                  status:
                    enum:
                      - provisioning
                      - active
                      - error
                      - released
                    title: Status
                    type: string
                  status_detail:
                    default: ''
                    description: What failed when status is `error`; empty otherwise.
                    title: Status Detail
                    type: string
                  created_at:
                    format: date-time
                    title: Created At
                    type: string
                  updated_at:
                    format: date-time
                    title: Updated At
                    type: string
                required:
                  - phone_number_id
                  - workspace_id
                  - phone_number
                  - provider
                  - agent_id
                  - status
                  - created_at
                  - updated_at
                type: object
        '401':
          description: No permission -- see authorization schemes
          headers: {}
          content:
            application/json:
              schema:
                properties:
                  status:
                    title: Status
                    type: integer
                  message:
                    title: Message
                    type: string
                required:
                  - status
                  - message
                type: object
        '404':
          description: Nothing matches the given URI
          headers: {}
          content:
            application/json:
              schema:
                properties:
                  status:
                    title: Status
                    type: integer
                  message:
                    title: Message
                    type: string
                required:
                  - status
                  - message
                type: object
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````