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

# List owned numbers

> List phone numbers associated with your Amplify account.

Returns owned phone numbers and the identifiers needed by other Numbers and fax operations.


## OpenAPI

````yaml GET /v1/numbers/list
openapi: 3.1.0
info:
  title: Amplify Customer API
  version: 1.0.0
  description: |-
    Canonical contract for the Amplify customer-facing API. This YAML file is
    the source of truth for Postman and Mintlify. Operations marked with
    x-amplify-validation-status: pending were migrated from the legacy Postman
    collection and must be validated before their contract is considered final.
servers:
  - url: https://api.amplify.xyz
    description: Production
  - url: https://dev-api.amplify.xyz
    description: Development
security: []
tags:
  - name: Authentication
  - name: Fax
  - name: Send Faxes
  - name: Receive Faxes
  - name: Manage Faxes
  - name: Workspace
  - name: Numbers
  - name: Contacts
  - name: Documents
  - name: Templates
paths:
  /v1/numbers/list:
    get:
      tags:
        - Numbers
      summary: List owned numbers
      description: >-
        Returns the phone numbers currently associated with the authenticated
        account, including the identifiers needed by other Numbers and fax
        operations.
      operationId: getv1NumbersList
      responses:
        '200':
          description: Numbers retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OwnedNumbersResponse'
              example:
                status: 1
                message: Numbers list retrieved successfully
                data:
                  - number_id: 701
                    order_id: '2900178196915815935'
                    fax_number: '+14084132233'
      security:
        - bearerAuth: []
components:
  schemas:
    OwnedNumbersResponse:
      type: object
      required:
        - status
        - message
        - data
      properties:
        status:
          type: integer
          description: A successful response returns `1`.
        message:
          type: string
          description: Human-readable result message.
        data:
          type: array
          items:
            type: object
            required:
              - number_id
              - order_id
              - fax_number
            properties:
              number_id:
                oneOf:
                  - type: integer
                  - type: string
                description: Identifier of the owned number.
              order_id:
                type: string
                description: Provider order identifier.
              fax_number:
                type: string
                description: Owned fax number in E.164 format.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````