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
}
Get Bland’s static IP addresses and ports for your region. Use these to configure your firewall.
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
}
"5061 TLS")."10000-20000 UDP").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
}
Was this page helpful?