API Reference
List uncertainties
A paginated list of open questions AskEngine has flagged about its own beliefs. Filter by status.
GET
/v1/uncertaintiesExample
curl -X GET "https://example.com/v1/uncertainties" \ -H "Authorization: Bearer $ASKENGINE_API_KEY"Query Parameters
status?stringFilter by status. Omitted: everything except dismissed.
Valuesopen, accepted, applied, dismissed
limit?integerMaximum number of results to return.
Default20Range1-50
cursor?stringPagination 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}