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 every signal that contributed to one dimension of one score. Powers the evidence drawer on the score report. Each signal carries source provider, raw value, normalized value, and timestamp.
curl -X GET https://app.dacard.ai/api/score/scr_xyz/dimension/decision_quality/signals \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
Required scopeCaller must own the score
IdempotentYes

Path

FieldRequiredNotes
scoreIdyesThe score.
dimensionIdyesOne of the 27 Team Operations dimensions or the Product Assessment dimensions.

Response

{
  "signals": [
    {
      "id": "sig_...",
      "type": "github.deploy_frequency",
      "provider": "github",
      "rawValue": 4.2,
      "normalizedValue": 0.84,
      "timestamp": "2026-04-29T08:00:00Z",
      "evidenceUrl": "https://github.com/acme/repo/actions/runs/..."
    }
  ]
}

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
403FORBIDDENCaller does not own the score.
404Score not foundBad scoreId.
404Dimension not founddimensionId is not in the canonical list.
500INTERNAL_ERRORRead failed.