curl --request POST \
--url https://api.bland.ai/v1/sip/test-call \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"phone_number": "<string>"
}
'{
"data": {
"call_id": "tc_abc123",
"message": "Test call initiated"
},
"errors": null
}
Place a live test call to your SIP endpoint to verify connectivity. Rate limited to 10 calls per 15 minutes.
curl --request POST \
--url https://api.bland.ai/v1/sip/test-call \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"phone_number": "<string>"
}
'{
"data": {
"call_id": "tc_abc123",
"message": "Test call initiated"
},
"errors": null
}
curl -X POST https://api.bland.ai/v1/sip/test-call \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"phone_number": "+14150000000"
}'
{
"data": {
"call_id": "tc_abc123",
"message": "Test call initiated"
},
"errors": null
}
Was this page helpful?