List Corrections
GET /api/v1/jobs/{job_id}/corrections/
Returns a paginated list of corrections for an extraction job.
Authentication
Requires an API key with jobs:read scope. Pass via the X-API-Key header.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
job_id | string (UUID) | The ID of the extraction job. |
Response
Status: 200 OK
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": "f6a7b8c9-0123-4567-89ab-cdef01234567",
"job_id": "e5f6a7b8-c901-2345-6789-abcdef012345",
"correction_type": "wrong_value",
"field_path": "employees[0].gross_pay",
"original_value": "5000.00",
"corrected_value": "5250.00",
"notes": "Verified against source document page 3",
"created_at": "2026-03-16T12:00:00Z"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
count | integer | Total number of corrections. |
next | string or null | URL for the next page of results. |
previous | string or null | URL for the previous page of results. |
results | array | List of correction objects. |
Correction Object
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique identifier for the correction. |
job_id | string (UUID) | The extraction job this correction belongs to. |
correction_type | string | Type of correction: wrong_value, wrong_field, missing_field, or spurious. |
field_path | string | Dot-notation path to the corrected field. |
original_value | string | The original extracted value. |
corrected_value | string | The corrected value. |
notes | string or null | Optional explanation for the correction. |
created_at | string (ISO 8601) | Timestamp when the correction was created. |
Errors
| Status | Description |
|---|---|
401 | Missing or invalid API key. |
403 | API key does not have jobs:read scope. |
404 | Extraction job not found. |
Code Examples
curl https://api.parsifyhq.com/api/v1/jobs/e5f6a7b8-c901-2345-6789-abcdef012345/corrections/ \
-H "X-API-Key: YOUR_API_KEY"