ask/engine
API Reference

List action cards

The team's inbox: pending action cards ranked by priority tier (1 = most actionable), then per-item urgency, then newest first. Returns the top 100 by rank in one page (cursor is always null); resolving or snoozing cards surfaces the rest.

GET/v1/action-cards

Example

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

Response

{  "data": [    {      "actionCardId": "card_123",      "type": "new_recommendation",      "summary": "AskEngine recommends adding verification cues to flight results.",      "priority": 1,      "createdAt": 1767312000000,      "refs": {        "recommendationId": "rec_456",        "studyIds": [          "study_789"        ]      },      "studies": [        {          "studyId": "study_789",          "name": "Post-use impressions"        }      ]    }  ],  "cursor": null}