curl --request GET \
--url https://api.bland.ai/v1/sip/status \
--header 'authorization: <authorization>'{
"data": {
"status": "healthy",
"response_time_ms": 42,
"checked_at": "2026-03-09T12:00:00Z"
},
"errors": null
}
Get the health status of a SIP trunk by probing the endpoint with SIP OPTIONS.
curl --request GET \
--url https://api.bland.ai/v1/sip/status \
--header 'authorization: <authorization>'{
"data": {
"status": "healthy",
"response_time_ms": 42,
"checked_at": "2026-03-09T12:00:00Z"
},
"errors": null
}
"healthy", "unreachable", or "unchecked". Inbound-only trunks show "unchecked" since there is no outbound endpoint to probe.null if unreachable or unchecked.curl -X GET 'https://api.bland.ai/v1/sip/status?phone_number=%2B14150000000' \
-H "Authorization: Bearer <token>"
{
"data": {
"status": "healthy",
"response_time_ms": 42,
"checked_at": "2026-03-09T12:00:00Z"
},
"errors": null
}
Was this page helpful?