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.

Trigger a recalibration of a stored score against current signal data. Use when an integration was connected after the original score, or when signals were corrected and the prior dimensions need to be re-weighted.
curl -X POST https://app.dacard.ai/api/score/recalibrate \
  -H "Authorization: Bearer $DACARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "scoreId": "scr_xyz" }'
PropertyValue
AuthRequired
Required scopeCaller must own the score
Cost5 credits (cheaper than a fresh score; no crawl)
IdempotentNo (each call re-runs the calibration)

Body

FieldTypeRequiredNotes
scoreIdstringyesThe score to recalibrate.

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
402CREDIT_EXHAUSTEDNo credits.
403FORBIDDENCaller does not own the score.
404Score not foundBad scoreId.
500SCORING_FAILEDRecalibration failed. Sentry traced.