> ## 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 areas

> List geographic areas and area codes available within a country.

Returns the areas where phone numbers are available for the required `country_code`.


## OpenAPI

````yaml POST /v1/numbers/area-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
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/area-list:
    post:
      tags:
        - Numbers
      summary: List available areas
      description: >-
        Returns the geographic areas and area codes where phone numbers are
        available within the specified country.
      operationId: postv1NumbersAreaList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                country_code:
                  type: string
              required:
                - country_code
            example:
              country_code: AU
      responses:
        '200':
          description: Areas retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NumberAreaListResponse'
              example:
                status: 1
                data:
                  - name: Adelaide
                    country_code: AU
                    code: '8'
                    prefix: '8'
        '422':
          description: Required country code was not supplied.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationMessageResponse'
              example:
                status: 0
                message: The country code field is required.
      security:
        - bearerAuth: []
components:
  schemas:
    NumberAreaListResponse:
      type: object
      required:
        - status
      properties:
        status:
          type: integer
          description: A successful response returns `1`.
        data:
          type: array
          description: >-
            Available areas. This property may be omitted when the country is
            unsupported.
          items:
            type: object
            required:
              - name
              - country_code
              - code
              - prefix
            properties:
              name:
                type: string
                description: Area name.
              country_code:
                type: string
                description: Two-letter country code.
              code:
                type: string
                description: Area code.
              prefix:
                type: string
                description: Number prefix used for the area.
    ValidationMessageResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: integer
          description: Indicates that the request was not accepted.
        message:
          type: string
          description: Human-readable validation message.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````