Skip to main content
GET
/
v1
/
sip
/
firewall-ips
Get Firewall IPs
curl --request GET \
  --url https://api.bland.ai/v1/sip/firewall-ips \
  --header 'authorization: <authorization>'
{
  "data": {
    "ip_addresses": [
      "35.80.235.26",
      "54.189.4.67",
      "100.20.173.20",
      "..."
    ],
    "ports": {
      "sip": "5061 TLS",
      "rtp": "10000-20000 UDP"
    }
  },
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Response

ip_addresses
string[]
Array of static IP addresses to whitelist in your firewall.
ports.sip
string
SIP signaling port and transport (e.g., "5061 TLS").
ports.rtp
string
RTP media port range (e.g., "10000-20000 UDP").
Example Request
curl -X GET https://api.bland.ai/v1/sip/firewall-ips \
  -H "Authorization: Bearer <token>"
{
  "data": {
    "ip_addresses": [
      "35.80.235.26",
      "54.189.4.67",
      "100.20.173.20",
      "..."
    ],
    "ports": {
      "sip": "5061 TLS",
      "rtp": "10000-20000 UDP"
    }
  },
  "errors": null
}