Skip to main content
GET
/
v1
/
sip
/
discover
/
status
Get Discovery Status
curl --request GET \
  --url https://api.bland.ai/v1/sip/discover/status \
  --header 'authorization: <authorization>'

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

discovery_id
string
required
The discovery session ID returned from POST /v1/sip/discover.

Response

Returns the same DiscoveryResult object as POST /v1/sip/discover. The status field indicates whether the discovery is still "running", has "completed", or has "failed". Discovery results expire after 10 minutes.
Example Request
curl -X GET 'https://api.bland.ai/v1/sip/discover/status?discovery_id=disc_abc123' \
  -H "Authorization: Bearer <token>"