Reports
A report is the output of a completed inspection: a set of findings, each graded and linked to the photo that proves it, plus an overall summary.
Fetching a report
curl https://api.gauzr.com/v1/inspections/insp_3fJ2c9/report \
-H "Authorization: Bearer $GAUZR_API_KEY"
{
"id": "insp_3fJ2c9",
"reference": "claim_84213",
"status": "completed",
"vehicle": { "vin": "1HGCM82633A004352" },
"summary": {
"grade": "moderate",
"findings": 3,
"estimated_repair_total": { "amount": 84200, "currency": "INR" }
},
"findings": [
{
"id": "fnd_a1",
"part": "front_bumper",
"damage": "scuff",
"severity": "minor",
"estimated_repair": { "amount": 12000, "currency": "INR" },
"evidence": {
"photo_url": "https://api.gauzr.com/v1/media/ph_9x2/full.jpg",
"region": { "x": 0.41, "y": 0.63, "w": 0.18, "h": 0.09 }
}
}
]
}
Findings
Every finding references the exact photo and region it was detected in — the evidence is part of the payload, not an afterthought.
| Field | Description |
|---|---|
part | Part code, e.g. front_bumper, left_rear_door. |
damage | Damage type, e.g. dent, scratch, scuff, crack. |
severity | minor, moderate, or severe. |
estimated_repair | Cost estimate, calibrated against claim outcomes. |
evidence.photo_url | The source photo. |
evidence.region | Normalized bounding box (0–1) of the damage within the photo. |
Overall grade
summary.grade rolls the findings into a single classification —
clean, minor, moderate, or severe — for quick routing. The same grade is
included in the inspection.completed webhook so you can act without a second
request.