> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Discovery Status

> Poll the status and results of a SIP endpoint discovery session.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Query Parameters

<ParamField query="discovery_id" type="string" required>
  The discovery session ID returned from `POST /v1/sip/discover`.
</ParamField>

### 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.

```json Example Request theme={null}
curl -X GET 'https://api.bland.ai/v1/sip/discover/status?discovery_id=disc_abc123' \
  -H "Authorization: Bearer <token>"
```

***

Docs for agents: [llms.txt](/llms.txt)
