List signals
get
https://api.intelig.ai/api/v1/intelig/signal
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: list
Returns signals filtered by source (KNOWLEDGE, STRATEGY, CODE_INTELLIGENCE) or status (SYNCED, PR_OPEN, FAILED). Omit parameters to list all signals.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/signal" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
source | string | no | — |
status | string | no | — |
Response 200
application/json · ApiResponseListSignalResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | SignalResponse[] | — |
Status codes
200— Signals retrieved successfully400— Invalid source or status value401— Not authenticated403— Insufficient permissions to access settings429— —
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.