> ## 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.

# Recalibrate a score

> Trigger a recalibration of a stored score against current signal data.

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.

```bash theme={null}
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" }'
```

| Property           | Value                                            |
| ------------------ | ------------------------------------------------ |
| **Auth**           | Required                                         |
| **Required scope** | Caller must own the score                        |
| **Cost**           | 5 credits (cheaper than a fresh score; no crawl) |
| **Idempotent**     | No (each call re-runs the calibration)           |

## Body

| Field     | Type   | Required | Notes                     |
| --------- | ------ | -------- | ------------------------- |
| `scoreId` | string | yes      | The score to recalibrate. |

## Errors

| Status | Code               | When                                 |
| ------ | ------------------ | ------------------------------------ |
| 401    | `AUTH_REQUIRED`    | No session.                          |
| 402    | `CREDIT_EXHAUSTED` | No credits.                          |
| 403    | `FORBIDDEN`        | Caller does not own the score.       |
| 404    | `Score not found`  | Bad `scoreId`.                       |
| 500    | `SCORING_FAILED`   | Recalibration failed. Sentry traced. |
