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

# Buscar números disponibles

> Lista números de teléfono disponibles para comprar.



## OpenAPI

````yaml /es/phone-numbers-api/api-reference/openapi-phone-numbers.json get /v1/phone-numbers/available
openapi: 3.0.3
info:
  title: 'Notificar API: números de teléfono'
  description: >-
    API para **consultar números de teléfono** desde el espacio de trabajo,
    **buscar números disponibles** para contratación y **configurar el
    comportamiento de las llamadas entrantes**.


    **La contratación** (reserva y pago) se realiza a través del **panel**
    Notifique. Utilice estos puntos finales para integraciones de consultas y
    configuración.


    **Autenticación:** encabezado `Authorization: Bearer sk_live_xxxxx` o
    `x-api-key: sk_live_xxxxx`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Producción
security:
  - ntfPhoneBearerAuth: []
  - ntfPhoneApiKeyHeader: []
tags:
  - name: Números de Telefone
    description: Listar, consultar, buscar disponibles y configurar entrada de voz.
paths:
  /v1/phone-numbers/available:
    get:
      tags:
        - Números de Telefone
      summary: Buscar números disponibles
      description: Lista números de teléfono disponibles para comprar.
      operationId: ntfPhone_getV1PhoneNumbersAvailable
      parameters:
        - name: countryCode
          in: query
          description: Código de país ISO (predeterminado `US`).
          schema:
            type: string
            example: BR
        - name: phoneNumberType
          in: query
          description: 'Tipo de número (por ejemplo: `local`, `mobile`, `toll_free`).'
          schema:
            type: string
        - name: areaCode
          in: query
          description: DDD o código de área (código de destino nacional).
          schema:
            type: string
            example: '11'
        - name: contains
          in: query
          description: Secuencia de dígitos que debe contener el número.
          schema:
            type: string
      responses:
        '200':
          description: Lista de números disponibles con precio mensual en centavos (BRL).
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - data
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/NtfPhone_AvailableNumber'
              example:
                success: true
                data:
                  - phoneE164: '+5511987654321'
                    countryCode: BR
                    phoneNumberType: local
                    features:
                      - voice
                      - sms
                    region: SP
                    locality: São Paulo
                    monthlyPriceBrlCents: 2990
        '401':
          $ref: '#/components/responses/NtfPhone_Unauthorized'
        '403':
          $ref: '#/components/responses/NtfPhone_Forbidden'
        '502':
          description: Error temporal al consultar catálogo.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfPhone_ErrorEnvelope'
components:
  schemas:
    NtfPhone_AvailableNumber:
      type: object
      properties:
        phoneE164:
          type: string
        countryCode:
          type: string
        phoneNumberType:
          type: string
        features:
          type: array
          items:
            type: string
        region:
          type: string
          nullable: true
        locality:
          type: string
          nullable: true
        monthlyPriceBrlCents:
          type: integer
    NtfPhone_ErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
        message:
          type: string
  responses:
    NtfPhone_Unauthorized:
      description: Clave API faltante o no válida.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfPhone_ErrorEnvelope'
          example:
            success: false
            error: Unauthorized
            message: Unauthorized
            code: UNAUTHORIZED
    NtfPhone_Forbidden:
      description: Alcance insuficiente.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfPhone_ErrorEnvelope'
          example:
            success: false
            error: Forbidden
            message: 'Missing scope: phone_numbers:read'
            code: FORBIDDEN
  securitySchemes:
    ntfPhoneBearerAuth:
      type: http
      scheme: bearer
      description: 'Clave API sin formato Portador (ej.: sk_live_...).'
    ntfPhoneApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternativa de clave API al portador.

````