Skip to main content
GET
/
agency
/
phone
List Agency Phone Numbers
curl --request GET \
  --url https://api.getoutbox.ai/agency/phone \
  --header 'Authorization: <api-key>'
[
  {
    "id": "<string>",
    "integration": "twilio",
    "type": "phone_number",
    "country": "<string>",
    "friendly_name": "<string>",
    "phone_number": "<string>",
    "company": {
      "id": "<string>",
      "name": "<string>"
    },
    "rebill_on": true,
    "inbound_cost": 123,
    "outbound_cost": 123,
    "charge_per_second": true,
    "sip_uri": "<string>",
    "sip_username": "<string>",
    "sip_password": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Agency API Key

Response

Phone numbers retrieved successfully

id
string | null

Null if not yet saved

integration
enum<string>
Available options:
twilio,
vonage,
telnyx,
sip
type
enum<string>
Available options:
phone_number,
verified_caller_id
country
string
friendly_name
string
phone_number
string
company
object
rebill_on
boolean
inbound_cost
number
outbound_cost
number
charge_per_second
boolean

For SIP only

sip_uri
string

For SIP only

sip_username
string

For SIP only

sip_password
string

For SIP only