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.

Generate the next board read for an account. Returns the structured artifact (composite read, top moves, evidence, ratios) and the export-ready markdown. Costs credits.
curl -X POST https://app.dacard.ai/api/board-report \
  -H "Authorization: Bearer $DACARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "productId": "prod_abc",
    "period": "2026-Q2"
  }'
PropertyValue
AuthRequired
Required planPro or higher
Cost10 credits per generation
IdempotentNo (each call generates a fresh artifact)

Body

FieldTypeRequiredNotes
productIdstringyesProduct to report against.
periodstringyesReporting window. Format: YYYY-Q[1-4] or YYYY-MM.
includeMovesbooleannoDefault true. Set false to omit the moves section.

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
402CREDIT_EXHAUSTEDNo credits left in this billing cycle.
403FEATURE_GATEDCaller is on Free.
403ONBOARDING_REQUIREDActivation contract not complete.
500INTERNAL_ERRORGeneration or write failed.