API Reference / Strategy - Initiative Discovery
Get a discovery run
get
https://api.intelig.ai/api/v1/intelig/strategy/discovery/runs/{runId}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getRun
Returns one run with its candidates and their current state.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/discovery/runs/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
runId | integer (int64) | yes | — |
Response 200
application/json · ApiResponseDiscoveryRunResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | DiscoveryRunResponse | — |
Status codes
200— OK401— —429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.