Browse available phone numbers in inventory that are not assigned to
any account. Only numbers with status='active' and auth_id=NULL
are returned. These numbers are ready to be purchased.
curl --request GET \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/inventory/numbers \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"e164": "+14155551234",
"country": "US",
"region": "CA",
"status": "active",
"setup_fee": 0,
"monthly_fee": 1,
"currency": "INR",
"created_at": "2025-01-15T10:00:00Z",
"updated_at": "2025-01-15T10:00:00Z"
}
],
"page": 1,
"per_page": 25,
"total": 500
}This endpoint lists phone numbers in inventory (Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
auth_id is null) that are available for purchase. Use the Purchase from Inventory endpoint to assign them to your account.
status='active' and auth_id=NULL are returned. These numbers are ready to be purchased and assigned to your account.GET /v1/account/{auth_id}/inventory/numbers
X-Auth-ID - Your Auth ID (e.g., {auth_id})X-Auth-Token - Your account Auth TokenContent-Type: application/json| Field | Type | Required | Description |
|---|---|---|---|
country | string | No | Filter by country code (e.g., “US”, “IN”). Optional. |
page | integer | No | Page number for pagination. Default: 1. |
per_page | integer | No | Items per page. Default: 25. Maximum: 100. |
{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"e164": "+14155551234",
"country": "US",
"region": "CA",
"status": "active",
"setup_fee": 0.0,
"monthly_fee": 1.0,
"currency": "INR",
"created_at": "2025-01-15T10:00:00Z",
"updated_at": "2025-01-15T10:00:00Z"
}
],
"page": 1,
"per_page": 25,
"total": 500
}
curl -X GET "https://api.vobiz.ai/api/v1/account/{auth_id}/inventory/numbers?page=1&per_page=25" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}"
curl -X GET "https://api.vobiz.ai/api/v1/account/{auth_id}/inventory/numbers?country=US&page=1&per_page=25" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}"
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
Filter by country code (e.g., "US", "IN").
"IN"
Substring match against the E.164 number (e.g., "80" matches "+918065...").
x <= 100Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/inventory/numbers \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"e164": "+14155551234",
"country": "US",
"region": "CA",
"status": "active",
"setup_fee": 0,
"monthly_fee": 1,
"currency": "INR",
"created_at": "2025-01-15T10:00:00Z",
"updated_at": "2025-01-15T10:00:00Z"
}
],
"page": 1,
"per_page": 25,
"total": 500
}