> ## 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 available countries

> List countries where Amplify phone numbers are available.

Returns supported countries together with their calling prefixes and purchasing tiers.


## OpenAPI

````yaml GET /v1/numbers/country-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/country-list:
    get:
      tags:
        - Numbers
      summary: List available countries
      description: >-
        Returns the countries where Amplify currently offers phone numbers,
        including each country's calling prefix and purchasing tier.
      operationId: getv1NumbersCountryList
      responses:
        '200':
          description: Countries retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NumberCountryListResponse'
              example:
                status: 1
                data:
                  - code: AU
                    name: Australia
                    prefix: 61
                    tier: 2
                  - code: US
                    name: United States
                    prefix: 1
                    tier: 0
      security:
        - bearerAuth: []
components:
  schemas:
    NumberCountryListResponse:
      type: object
      required:
        - status
        - data
      properties:
        status:
          type: integer
          description: A successful response returns `1`.
        data:
          type: array
          description: Countries where phone numbers are available.
          items:
            type: object
            required:
              - code
              - name
              - prefix
              - tier
            properties:
              code:
                type: string
                description: Two-letter country code.
              name:
                type: string
                description: Country name.
              prefix:
                type: integer
                description: International calling prefix.
              tier:
                type: integer
                description: Number purchasing tier used by the service.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````