Title Check

Check vehicle title status, salvage records, and history.
GET
Rate Limit: 10 RPS

Authentication

All API requests require an API key to be included in the x-api-key header.

Endpoint

GET /title-check

Parameters

NameTypeRequired
vinstringRequired

Code Examples

Sample Response

JSON Response
{
  "data": {
    "vin": "ZFF74UFA6H0219990",
    "vehicle": {
      "make": "FERRARI",
      "year": "2017",
      "model": "F12"
    },
    "title_check": {
      "risk_level": "high",
      "risk_score": 70,
      "title_status": "salvage",
      "is_junk_title": false,
      "is_clean_title": false,
      "primary_damage": "undercarriage",
      "first_seen_date": "",
      "is_fire_damaged": false,
      "is_hail_damaged": false,
      "is_flood_damaged": false,
      "is_rebuilt_title": false,
      "is_salvage_title": true,
      "latest_seen_date": "",
      "secondary_damage": null,
      "is_theft_recovery": false,
      "latest_title_type": "OK CERT OF TITLE-SALVAGE",
      "latest_title_state": "OK",
      "is_collision_damaged": true,
      "auction_records_found": 1
    },
    "has_title_brand": true,
    "has_damage_record": true,
    "has_salvage_record": true,
    "has_auction_history": true
  },
  "status": "success"
}