NEW! Interior & Dashboard lights Inspection

Detect damages on the cabin of the car, as well as dashboard warning lights

Inspection of a list of car cabin images

This endpoint allows you to submit an array of image URLs showing a part of a cabin of a vehicle. Alto AI will tell whether the part is damaged, dirty or undamaged.

Input
Output

"results": [
      {
        "result": {
         
          "dirty": 0,
          "undamaged": 0
        },

The results of the cabin inspection will be currently only returned over a webhook, and will soon be available for consultation on our Hub.

Detect Conditions of a Cabin From a List Images - Endpoint

POST https://alto.tchek.fr/apiV1/detect/damage-interior

Request Body

Name
Type
Description

urls

Array

List of file URLs. Ex: { "urls": [ "https://tchek-images.s3.eu-west-3.amazonaws.com/swagger/interiorDamage1.jpg", "https://tchek-images.s3.eu-west-3.amazonaws.com/swagger/interiorDamage2.jpg", "https://tchek-images.s3.eu-west-3.amazonaws.com/swagger/interiorDamage3.jpg" ] }

Sample images

Response

{
  "id": "76bccb0a3c9f762c",
  "status": 200,
  "data": {
    "results": [
      {
        "result": {
          "damaged": 1,
          "dirty": 0,
          "undamaged": 0
        },
        "url": "https://www.renovation-du-cuir.fr/forum/images/2635-1.jpg"
      }
    ],
    "requestId": "76bccb0a3c9f762c"
  }
}

Key
Type
Description

id

String

The id of the request

status

Number

200 if success, 422 if error

url

String

The url of tje image analyzed

data.results.damages

Array

List of results, see below

requestId

String

The id of the request

Result

Key
Type
Description

damaged

Integer

1 if the part in the picture is damaged

dirty

Integer

1 if the part in the picture is dirty

undamaged

Integer

1 if the part in the picture is NOT damaged

Inspection of a list of dashboard images

This endpoint allows you to submit an array of image URLs showing the dashboard of a vehicle. Alto AI will tell whether one or more warning lights are detected, along with their coordinates in the image, their type, their color and their confidence score (0 to 1, where 1 is maximum confidence). The results of the dashboard lights inspection will be currently only returned over a webhook, and will soon be available for consultation on our Hub.

Input
Output

Detect Dashboard Warnings from a List of Dashboard Images - Endpoint

POST https://alto.tchek.fr/apiV1/detect/indicators

Request Body

Name
Type
Description

urls

Array

List of file URLs

Response

{
  "id": "806bbd383f89362d",
  "status": 200,
  "data": {
    "https://tchek-images.s3.eu-west-3.amazonaws.com/swagger/indicator1.webp": {
      "0": {
        "anomaly": "CHECK_ENGINE",
        "bbox": [
          0.19195402298850575,
          0.4236842105263158,
          0.22758620689655173,
          0.4868421052631579
        ],
        "score": 0.85,
        "status": "Yellow"
      },
      "1": {
        "anomaly": "BATTERY",
        "bbox": [
          0.15402298850574714,
          0.5684210526315789,
          0.1896551724137931,
          0.6289473684210526
        ],
        "score": 0.84,
        "status": "Red"
      },
      "2": {
        "anomaly": "ENGINE_OIL",
        "bbox": [
          0.1839080459770115,
          0.7052631578947368,
          0.22758620689655173,
          0.7657894736842106
        ],
        "score": 0.83,
        "status": "Red"
      },
      "3": {
        "anomaly": "FUEL_LEVEL",
        "bbox": [
          0.2896551724137931,
          0.4789473684210526,
          0.3264367816091954,
          0.5552631578947368
        ],
        "score": 0.83,
        "status": "Yellow"
      },
      "4": {
        "anomaly": "BRAKE",
        "bbox": [
          0.7390804597701149,
          0.49473684210526314,
          0.771264367816092,
          0.5526315789473685
        ],
        "score": 0.82,
        "status": "Red"
      }
    }
  }
}
Key
Type
Description

id

String

The id of the request

status

Number

200 if success, 422 if error

data.results.damages

Array

List of results, see below

requestId

String

The id of the request

Data Array

Key
Type
Description

url

String

The url of the image analyzed

id

Integer

The id of each identified dashboard light

Data

Key
Type
Description

anomaly

String

The identifier of the warning light. List below: List of warning lights

id

Integer

the id of each identified dashboard light

bbox

Array

xyxy format of the bounding box coordinates. First xy couple: upper-left corner of the bounding box. Second xy couple: bottom-right corner of the bounding box

score

Number

Confidence score, from 0 to 1. 1= full confidence

status

String

The color of the warning light in the picture.

List of warning lights

ENGINE_TEMP

Engine temperature

Excessive temperature/ missing coolant

Not lit

Red

BATTERY

Battery

Problème lié à la batterie (faiblesse, HS..)

Not lit

Red

ENGINE_OIL

Engine oil

Missing engine oil

Not lit

Red

BRAKE

Brakes

Brake fluid low

Not lit

Red

POWER_STEERING

Power Steering

Power steering system fault (lack of fluid, steering pump failure, broken steering belt, etc.)

Not lit

Red

AIRBAG

Airbag

Airbag deactivated or airbag fault

Not lit

Red

ANTITHEFT_LOCK

Antitheft lock

Problem with the anti-theft or security system

Not lit

Red

STOP

Stop

Warning of a braking problem

Not lit

Red

ABS

ABS

ABS brake system malfunction

Not lit

Orange

STABILITY_CONTROL

Stability Control

ESP failure

Not lit

Orange

BRAKE_PADS

Brake Pads

Brake pad wear

Not lit

Orange

CHECK_ENGINE

Check Engine

Engine block problem

Not lit

Orange/red

TIRE_PRESSURE

Tire pressure

Low tire pressure warning or pressure sensor fault

Not lit

Orange

FUEL_LEVEL

Fuel level

Low fuel level

Not lit

Orange

FUEL_FILTER

Fuel filter (Diesel only)

Presence of water in the fuel filter

Not lit

Orange

WATER_IN_FUEL

Water in fuel (Diesel only)

Presence of water in the fuel

Not lit

Orange

BULB

Bulb

Lamp or indicator bulb to be replaced

Not lit

Orange

WRENCH

Wrench

General mechanical problem: Revision required

Not lit

Orange

TRIANGLE

Triangle

Electrical malfunction

Not lit

Orange

GLOW_SYSTEM

Glow system

(Diesel only)

Preheating circuit fault

Not lit (after a few seconds)

Orange

SEAT_BELT

Seat belt

Unsecured passenger

Lit

Red

DOOR_OPEN

Door(s) open

Open door(s)

Lit

Red

HAND_BRAKE

Hand brake

Handbrake pulled

Lit

Red

Last updated

Was this helpful?