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

# Search Available Numbers

> Search for available Israeli phone numbers to purchase.



## OpenAPI

````yaml POST /phone-numbers/search
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /phone-numbers/search:
    post:
      tags:
        - Phone Numbers
      summary: Search available numbers
      description: Search for available Israeli phone numbers to purchase.
      operationId: searchPhoneNumbers
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                areaCode:
                  type: string
                  description: >-
                    Israeli mobile prefix (50, 52, 53, 54, 55, 58). Omit to see
                    all.
                  example: '55'
                limit:
                  type: integer
                  default: 10
                page:
                  type: integer
                  default: 1
      responses:
        '200':
          description: >
            Available numbers. All returned numbers are Israeli mobile numbers.
            The camelCase fields here surface the internal number-search
            response as-is.
          content:
            application/json:
              schema:
                type: object
                properties:
                  numbers:
                    type: array
                    items:
                      type: object
                      properties:
                        phoneNumber:
                          type: string
                          example: '+972551234567'
                        friendlyName:
                          type: string
                        locality:
                          type: string
                        region:
                          type: string
                          example: IL
                        capabilities:
                          type: object
                          properties:
                            voice:
                              type: boolean
                            sms:
                              type: boolean
                        pricing:
                          type: object
                          properties:
                            basePriceCents:
                              type: integer
                            finalPriceCents:
                              type: integer
                            priceDisplay:
                              type: string
                            currency:
                              type: string
                              example: USD
                            markupPercentage:
                              type: number
                  numberType:
                    type: string
                  pagination:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                      totalPages:
                        type: integer
                      totalNumbers:
                        type: integer
                      limit:
                        type: integer
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````