ask/engine
API Reference

List uncertainties

A paginated list of open questions AskEngine has flagged about its own beliefs. Filter by status.

GET/v1/uncertainties

Example

curl -X GET "https://example.com/v1/uncertainties" \  -H "Authorization: Bearer $ASKENGINE_API_KEY"

Query Parameters

status?string

Filter by status. Omitted: everything except dismissed.

Valuesopen, accepted, applied, dismissed
limit?integer

Maximum number of results to return.

Default20Range1-50
cursor?string

Pagination cursor from the previous response.

Response

{  "data": [    {      "uncertaintyId": "unc_77",      "signalId": "sig_123",      "type": "thin_counter_evidence",      "status": "open",      "description": "Few dissenting voices — the belief may be over-weighted to power users.",      "suggestedAction": "Interview 5 first-week users who churned.",      "detectedAt": 1764600000000    }  ],  "cursor": null}