API Reference / agent-controller
Findings raised by one agent
get
https://api.intelig.ai/api/v1/intelig/agents/{name}/findings
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getFindings
What this agent concluded, newest first, each carrying the evidence it was grounded in. For a view across every agent, use GET /agents/findings/inbox instead. Requires the `agent:read` scope.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/agents/string/findings" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | — |
Response 200
application/json · ApiResponseListAgentFindingResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | AgentFindingResponse[] | — |
Status codes
200— OK401— —404— Not Found429— —
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.