TryVox

Search Available Numbers

Search the TryVox number catalog for available phone numbers.

Search for available phone numbers in the TryVox catalog by country, type, region, area code, or number pattern.

Endpoint

GET /v1/account/{account_id}/numbers/catalog

Query Parameters

ParameterTypeRequiredDescription
countrystringYesISO 3166-1 alpha-2 country code (e.g., "IN", "US", "GB")
typestringNoNumber type: "local", "toll_free", or "mobile"
regionstringNoState or region filter (e.g., "CA" for California)
area_codestringNoArea code filter (e.g., "415" for San Francisco)
containsstringNoNumber pattern to search for (e.g., "1234")
limitintegerNoResults per page (default: 20, max: 100)

Request Example

Search for local phone numbers in India:

curl --request GET \
  --url 'https://api.tryvox.io/v1/account/acc_123abc/numbers/catalog?country=IN&type=local&limit=10' \
  --header 'Authorization: Bearer tvx_sk_live_...'

Search for toll-free numbers in the US with a specific area code:

curl --request GET \
  --url 'https://api.tryvox.io/v1/account/acc_123abc/numbers/catalog?country=US&type=toll_free&area_code=800' \
  --header 'Authorization: Bearer tvx_sk_live_...'

Response

{
  "data": [
    {
      "e164": "+919876543210",
      "country": "IN",
      "type": "local",
      "region": "Maharashtra",
      "capabilities": ["voice", "sms"],
      "monthly_fee": 2.50,
      "setup_fee": 0.00,
      "currency": "USD"
    },
    {
      "e164": "+919876543211",
      "country": "IN",
      "type": "local",
      "region": "Maharashtra",
      "capabilities": ["voice", "sms"],
      "monthly_fee": 2.50,
      "setup_fee": 0.00,
      "currency": "USD"
    }
  ],
  "pagination": {
    "total": 245,
    "count": 10,
    "per_page": 10,
    "current_page": 1,
    "total_pages": 25
  }
}

Response Fields

FieldTypeDescription
e164stringPhone number in E.164 format
countrystringISO 3166-1 alpha-2 country code
typestringNumber type: "local", "toll_free", or "mobile"
regionstringState or region where the number is located
capabilitiesarraySupported capabilities: "voice", "sms", "mms"
monthly_feenumberMonthly recurring fee in USD
setup_feenumberOne-time setup fee in USD
currencystringCurrency for pricing (always "USD")

Next Steps

Once you find a number you want, proceed to purchase it.

On this page