Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dacard.ai/llms.txt

Use this file to discover all available pages before exploring further.

Read the chronological event timeline for a product, account, or cycle. Powers the rail’s “What’s cooking” feed and the audit views.
curl -X GET "https://app.dacard.ai/api/intelligence/timeline?productId=prod_abc&since=2026-04-01" \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
Required scopeAccount membership
IdempotentYes

Query

FieldTypeRequiredNotes
productIdstringnoNarrow to one product.
sinceISO 8601 datenoDefaults to 30 days ago.
eventTypescomma listnoFilter (e.g., score.completed,move.landed).
limitintegernoMax 200. Default 50.

Response

{
  "events": [
    {
      "id": "evt_...",
      "ts": "2026-05-04T12:00:00Z",
      "type": "score.completed",
      "productId": "prod_abc",
      "summary": "Score landed at 78"
    }
  ],
  "nextCursor": null
}

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
500INTERNAL_ERRORRead failed.