๐งช Live Demo
๐ธ Drag and drop an image here or click to browse
๐ค Available Models
Best Model (default)
High accuracy car parts detection with lower accuracy damage detection. Best for comprehensive car part identification.
Light Damage Model
Very high accuracy light damage detection with less comprehensive parts detection. Specialized for detecting minor damages.
๐ API Documentation
POST /predict
Submit an image for car damage analysis
Parameters:
file(required): Image filemodel_type(optional): "best" (default) or "light-damage"
# Default model (best)
curl -X POST https://cardamage-api.tagxdata.com/predict \
  -H "X-API-Key: your-api-key" \
  -F "file=@car_image.jpg"
# Light damage model
curl -X POST https://cardamage-api.tagxdata.com/predict \
  -H "X-API-Key: your-api-key" \
  -F "file=@car_image.jpg" \
  -F "model_type=light-damage"
                GET /result/{job_id}
Get the analysis result for a submitted job
curl http://cardamage-api.tagxdata.com/result/job-id \
  -H "X-API-Key: your-api-key"
                GET /credits
Check your remaining API credits
curl http://cardamage-api.tagxdata.com/credits \
  -H "X-API-Key: your-api-key"
                ๐ท๏ธ Detection Categories
The API can detect 83 different car parts and damage types:
emblem
                    grill
                    hood
                    windshield
                    scratch
                    deformation
                    chip
                    rust
                    front_bumper_cover
                    rear_bumper
                    left_headlight
                    right_headlight
                    left_fender
                    right_fender
                    left_front_door
                    right_front_door
                    roof
                    trunk_tailgate
                    And 65 more...