1. Phone numbers
Flireo AI
  • Introducing Flireo AI
    • Introduction
    • Core concepts
    • Getting started
    • API overview
    • Errors
  • Assistants
    • Phone numbers linking
  • Phone numbers
    • Overview
    • Available numbers
    • List phone numbers
    • Order a phone number
    • Phone number orders
  • Verification groups
    • Overview
    • Available numbers
    • Create verification group
    • List verification groups
    • Order number via verification group
  • Server events
    • Assistant types
    • Assistant-request Event
    • Tool-calls Event
    • End-of-call-report Event
    • Status-update Event
    • Control live calls
API ReferenceDocumentatie
API ReferenceDocumentatie
Linkedin
  1. Phone numbers

Available numbers

Search for phone numbers that are available to order. Use this endpoint for national and mobile numbers. For local numbers, use the verification group endpoint instead.

Endpoint#

GET /v1/phone-numbers/available

Query Parameters#

ParameterTypeRequiredDefaultDescription
number_typestringNonationalType of numbers: national or mobile
querystringNo-Filter by phone number pattern
limitintegerNo20Maximum results (1-50)
Note: For local numbers, you must use /v1/verification-groups/{id}/available-phone-numbers with an approved verification group.

Example Request#


Example Response#

{
  "data": [
    {
      "phone_number": "+31851234567",
      "number_type": "national",
      "locality": null,
      "features": ["voice", "sms"],
      "cost": {
        "monthly": "2.00",
        "currency": "EUR",
        "credits": 10
      },
      "reservable": true
    },
    {
      "phone_number": "+31851234568",
      "number_type": "national",
      "locality": null,
      "features": ["voice"],
      "cost": {
        "monthly": "2.00",
        "currency": "EUR",
        "credits": 10
      },
      "reservable": true
    }
  ],
  "meta": {
    "total_results": 2,
    "number_type": "national",
    "requires_verification": false
  }
}

Response Fields#

FieldTypeDescription
phone_numberstringAvailable phone number in E.164 format
number_typestringType of number
localitystringCity/region (null for national/mobile)
featuresarraySupported features: voice, sms
cost.monthlystringMonthly cost in EUR
cost.creditsintegerCredits required to order (10)
reservablebooleanWhether this number can be ordered

Response JSON Schema#

{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "phone_number": { "type": "string" },
          "number_type": { "type": "string" },
          "locality": { "type": "string", "nullable": true },
          "features": { 
            "type": "array", 
            "items": { "type": "string" } 
          },
          "cost": {
            "type": "object",
            "properties": {
              "monthly": { "type": "string" },
              "currency": { "type": "string" },
              "credits": { "type": "integer" }
            }
          },
          "reservable": { "type": "boolean" }
        }
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "total_results": { "type": "integer" },
        "number_type": { "type": "string" },
        "requires_verification": { "type": "boolean" }
      }
    }
  }
}

Next:
Ready to order? See order a phone number.
Modified at 2025-12-08 10:36:38
Previous
Overview
Next
List phone numbers
Built with