Focus on Repair Costs

Repair costs are reported on:

  • the /damage/image/list Inspection endpoint

  • the /damage/vehicle Inspection endpoint

  • in the detectionFinished, createReport and shareUpdatedReport Webhooks

The repair costs for car body parts can be found:

  1. For inspections up until 2025, in the "severity" object of the JSON response.

  2. For inspections up from 2025 on, in the "partsCondition" object of the JSON response.

1. Inspections up until 2025

The severity section provides the severity (or condition) and the repair cost for each individual car body part of the vehicle, calculated according to the repair cost reference matrix provided during the onboarding.

To obtain the total cost of repairs, you will need to sum the repair costs for all parts of the vehicle.

"severity": [
                {
                    "costType": "sum",
                    "cost": 1200,
                    "severity": "SEV5",
                    "severityType": "sum",
                    "location": "PRCAV"
                },
                {
                    "costType": "sum",
                    "cost": 350,
                    "severity": "SEV4",
                    "severityType": "sum",
                    "location": "PHRAVD"
                },
                {
                    "costType": "sum",
                    "cost": 280,
                    "severity": "SEV3",
                    "severityType": "sum",
                    "location": "ROUAVD"
                },
                {
                    "costType": "sum",
                    "cost": 0,
                    "severity": "SEV3",
                    "severityType": "sum",
                    "location": "CLR"
                },
                {
                    "costType": "sum",
                    "cost": 75,
                    "severity": "SEV3",
                    "severityType": "sum",
                    "location": "AILAVD"
                }
            ],

The part codes list can be found on Nomenclature.

2. Inspections from 2025 on

The partsCondition section provides the severity (or condition) and the repair cost for each individual car body part of the vehicle, calculated according to the repair cost reference matrix provided during the onboarding.

To obtain the total cost of repairs, you will need to sum the repair costs for all parts of the vehicle.

"partsCondition": [
      {
        "id": "8fP7Sd1FOq",
        "partType": "carbody",
        "category": "exterior",
        "code": "PRCAR",
        "cost": 220,
        "currency": "€",
        "tax": 20,
        "severityLevel": 3,
        "reparation": "painting",
        "condition": "scratched",
        "confidence": null,
        "damages": [
          {
            "id": "lkzR9KoDt3",
            "isAuto": false,
            "severityLevel": 1,
            "type": "scratch",
            "confidence": 0.8,
            "rois": [
              {
                "id": "JABW5roNGo",
                "height": 0.03199529372859178,
                "width": 0.024746359993207734,
                "centerX": 0.4475260840646065,
                "centerY": 0.7641083571251552,
                "imageId": "jbqEMeRMbF",
                "imageUrl": "https://tchekprod-b257.s3.eu-central-1.amazonaws.com/lMIgFNyW9n/5X6Z1HCGrp/2024-11-21T12%3A21%3A46.397Z-401323469.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVTL4GKBTCFRCMTE2%2F20241122%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241122T102455Z&X-Amz-Expires=7200&X-Amz-Signature=4e8130317953c28f3a187c7f0bc60437d3f24b988c0c94510328601095b9b35c&X-Amz-SignedHeaders=host",
                "type": "scratch",
                "confidence": 0.8,
                "isAuto": false,
                "severityLevel": 1
              }
            ]
          },
          {
            "id": "ZPfW7mFyLl",
            "isAuto": false,
            "severityLevel": 3,
            "type": "scratch_rubbing",
            "confidence": 0.8,
            "rois": [
              {
                "id": "teFhBaOPmX",
                "height": 0.0858895705521473,
                "width": 0.02300613496932513,
                "centerX": 0.8180598159509203,
                "centerY": 0.7836400443547098,
                "imageId": "jbqEMeRMbF",
                "imageUrl": "https://tchekprod-b257.s3.eu-central-1.amazonaws.com/lMIgFNyW9n/5X6Z1HCGrp/2024-11-21T12%3A21%3A46.397Z-401323469.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVTL4GKBTCFRCMTE2%2F20241122%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241122T102455Z&X-Amz-Expires=7200&X-Amz-Signature=4e8130317953c28f3a187c7f0bc60437d3f24b988c0c94510328601095b9b35c&X-Amz-SignedHeaders=host",
                "type": "scratch_rubbing",
                "confidence": 0.8,
                "isAuto": false,
                "severityLevel": 3
              }
            ]
          }
        ]
      }
    ]
  },

The part codes list can be found on Nomenclature.

Last updated

Was this helpful?