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

# Get Phone Number Details

> Fetch one phone number by ID.

<span data-api-safety-label="read-only"><Badge color="gray" size="sm" shape="pill">Read only</Badge></span>

<Info>
  **Recommended.** This endpoint is part of the public `/v1` API reference and is the supported path for new integrations. See the [migration guide](/docs/api-reference/v1/migrating-to-v1) for versioning guidance.
</Info>

Returns the full record for a single purchased phone number: the E.164 `phone_number`, the `country_code`, the `type` (local, toll-free, or mobile), the monthly rental cost, the supported `capabilities` (voice, SMS where available), the display `nickname`, the currently assigned `inbound_agent_id`, and the purchase timestamp.

## When to use this

* **Number management UIs**: render the per-number detail view in a phone-number management page.
* **Routing audits**: verify which agent is currently handling inbound calls on a specific number before making changes.
* **Cost attribution**: pull `monthly_cost_usd` to attribute telephony spend per workspace or per use case in internal reports.
* **Compliance reviews**: confirm the number's country and capabilities match the use case it is being used for.

For the entire portfolio of numbers on the workspace, use [List Phone Numbers](/docs/api-reference/v1/phone-numbers/list).

## Path parameters

| Parameter | Description                                          |
| --------- | ---------------------------------------------------- |
| `id`      | The phone number ID, for example `phn_f7w2kx5mb9qz`. |

## Errors

* `404 Not Found` is returned when the number does not exist on this workspace.
* `403 Forbidden` is returned when the API key cannot read phone number records.

## Related endpoints

* [List Phone Numbers](/docs/api-reference/v1/phone-numbers/list): see every number on the workspace.
* [Search Available Numbers](/docs/api-reference/v1/phone-numbers/search-plivo): find provider numbers available for purchase.
* [Link SIP Trunk](/docs/api-reference/v1/phone-numbers/link-sip-trunk): connect a bring-your-own number.
* [Buy a Phone Number](/docs/api-reference/v1/phone-numbers/buy): purchase a new number.
* [Delete Phone Number](/docs/api-reference/v1/phone-numbers/delete): remove this number from the workspace.


## OpenAPI

````yaml GET /v1/organization-phone-numbers/{id}
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /v1/organization-phone-numbers/{id}:
    get:
      tags:
        - Organization Phone Numbers
        - Organization Phone Numbers V1
        - V1
      summary: Get Phone Number Details
      description: Returns one workspace phone number and its routing configuration.
      operationId: OrganizationPhoneNumbersV1Controller_findOne
      parameters:
        - name: id
          required: true
          in: path
          description: Phone number ID
          schema:
            type: string
            example: phn_abc123
      responses:
        '200':
          description: Phone number returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: phn_abc123
                  phone_number:
                    type: string
                    example: '+919876543210'
                  provider:
                    type: string
                  status:
                    type: string
              examples:
                success:
                  summary: Successful response
                  value:
                    id: phn_abc123
                    phone_number: '+14155552671'
                    provider: plivo
                    status: active
                    country_code: US
                    nickname: US Sales Line
        '401':
          description: Unauthorized - missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 401 Unauthorized
                  value:
                    statusCode: 401
                    message: API key is missing or invalid
                    error: Unauthorized
        '403':
          description: Forbidden - phone number does not belong to your organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 403 Forbidden
                  value:
                    statusCode: 403
                    message: You do not have permission to access this resource
                    error: Forbidden
        '404':
          description: Phone number not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 404 Not Found
                  value:
                    statusCode: 404
                    message: Phone number not found
                    error: Not Found
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 500 Internal Server Error
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      security:
        - bearer: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        statusCode:
          type: integer
          example: 400
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
          example: phone_number must be a valid E.164 phone number
        error:
          type: string
          example: Bad Request
      required:
        - statusCode
        - message
        - error
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````