API Reference / Strategy - Initiative Discovery
Start a discovery run
post
https://api.intelig.ai/api/v1/intelig/strategy/discovery/runs
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: startRun
Kicks off a scan of recent execution signals for initiative candidates and returns the run id. The run is asynchronous — poll the run endpoint for its state.
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/discovery/runs" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
windowDays | integer (int32) | no | — |
Response 200
application/json · ApiResponseLong
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | integer (int64) | — |
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.