Niilox API

Provision

Phone number marketplace

Search, buy, and attach dedicated SMS numbers to your tenant — Americas, Europe, and Asia-Pacific. Scoped to X-App-ID; retail monthly pricing shown before purchase.

  • API base: https://api.niilox.com/api/v1/numbers
  • Portal: /portal/dashboard/numbers
  • Machine-readable: /llms.txt
  • Search live inventory

    Filter by country and digits — US local, toll-free, and geographic numbers in EU and APAC.

  • Buy per tenant

    Purchased numbers attach to your X-App-ID and become the default SMS sender.

  • Retail pricing

    Monthly rent shown before checkout — from $3.99 in Americas and UK.

  • REST + SDK

    Same flows in the portal, HTTP API, and @niilox/sdk client.numbers.

Americas

United States ($3.99/mo) · Canada ($3.99/mo) · Mexico ($4.99/mo)

Europe

United Kingdom ($3.99/mo) · Ireland ($4.99/mo) · Germany ($4.99/mo) · France ($4.99/mo) · Netherlands ($4.99/mo) · Spain ($4.99/mo)

Asia-Pacific

Australia ($5.49/mo) · Singapore ($5.49/mo) · Philippines ($5.49/mo)

TypeScript · REST
import { createNiiloxClient } from '@niilox/sdk' const api = createNiiloxClient({ appId, apiKey }) await api.numbers.search({ country_code: 'US', contains: '415' })await api.numbers.purchase({  e164: '+14155550100',  country_code: 'US',  number_type: 'local',}) --- POST /api/v1/numbers/searchAuthorization: Bearer niilox_sk_…X-App-ID: your_app_id { "country_code": "US", "contains": "415", "number_type": "local" }