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

# Search Available Numbers

> Search for available phone numbers to purchase.



## OpenAPI

````yaml GET /numbers/search_available
openapi: 3.1.0
info:
  title: Public API v1
  description: >-
    Public API v1 requiring API keys.


    **Timestamps:** All datetime fields in API responses are returned in UTC
    using ISO 8601 format (e.g., `2024-01-15T14:30:00Z`). When filtering by date
    parameters, provide timestamps in ISO 8601 format.
  version: 0.1.0
servers:
  - url: https://api.prod.usesimple.ai/api/v1
    description: Production API Server
security: []
paths:
  /numbers/search_available:
    get:
      tags:
        - Numbers
      summary: Search Available Numbers
      description: Search for available phone numbers to purchase.
      operationId: search_available_numbers_numbers_search_get
      parameters:
        - name: area_code
          in: query
          required: false
          schema:
            type: string
            title: Area Code
        - name: country
          in: query
          required: false
          schema:
            type: string
            title: Country
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AvailableNumberResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    AvailableNumberResponse:
      type: object
      properties:
        phone_number:
          type: string
        friendly_name:
          type: string
        address_requirements:
          type: string
        region:
          type: string
        country:
          type: string
      required:
        - phone_number
        - friendly_name
        - address_requirements
        - region
        - country
      title: AvailableNumberResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````