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.

List all stored score results across the caller’s products. Cursored. Use productId to narrow.
curl -X GET "https://app.dacard.ai/api/results?productId=prod_abc&limit=20" \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
IdempotentYes

Query

FieldTypeRequiredNotes
productIdstringnoNarrow to one product.
cursorstringnoOpaque cursor from a previous response.
limitintegernoMax 100. Default 20.

Response

{
  "results": [
    {
      "id": "scr_...",
      "productId": "prod_abc",
      "totalScore": 78,
      "stageName": "Scaling",
      "createdAt": "2026-04-29T08:00:00Z"
    }
  ],
  "nextCursor": "..."
}

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
500INTERNAL_ERRORRead failed.