For the complete documentation index, see llms.txt. This page is also available as Markdown.

Static Data API

Vehicle Data. This is a proxy call to Dat's FinanceLine/soap/VehicleIdentificationService:getVehicleData API. Docs: https://www.dat.de/fileadmin/de/support/interface-documentation/MG/SilverDAT_Schnittstellen-Kompendium_Mag/#/home/1987/20/21

get

Returns vehicle static data for the given VIN.

Required scopes
This endpoint requires the following scopes:
  • : static vehicle data
Authorizations
OAuth2clientCredentialsRequired
Token URL:
Path parameters
vinstringRequired

Vehicle Identification number

Responses
200

successful operation

application/json
get/v1/vehicle-static-data/{vin}/data
GET /v1/vehicle-static-data/{vin}/data HTTP/1.1
Host: api.high-mobility.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "vehicle": {
    "manufacturer": {
      "brand": {
        "id": "285",
        "name": "Kia"
      },
      "container": {
        "id": "DE009",
        "name": "DE - Van5 2.0 , Titanium, 2010 - 2015"
      },
      "kba_numbers": [
        "8516/AUM",
        "1566/AUR"
      ],
      "model": {
        "id": "135",
        "name": "C-Max (CB7)(2012->)"
      },
      "product_group": {
        "code": "5023",
        "name": "Van"
      },
      "rental_car_class": "6",
      "sales_description": "C-Max 2.0 TDCi DPF Titanium",
      "sub_model": {
        "id": "12",
        "name": "Titanium",
        "variant": "10"
      },
      "vehicle_type": {
        "id": "1",
        "name": "Passenger car, SUV, small van"
      }
    },
    "specs": {
      "body": {
        "doors": "5",
        "seats": "5",
        "structure": {
          "description": "Van",
          "type": "Van"
        },
        "trunk": {
          "size": {
            "max": "1723",
            "standard": "432"
          }
        }
      },
      "dimensions": {
        "height": "1626",
        "length": "4380",
        "wheelbase": "2648",
        "width": {
          "mirrors": "2022",
          "standard": "1828"
        }
      },
      "drivetrain": {
        "axles": {
          "driven": "1",
          "total": "2"
        },
        "code": "FA",
        "transmission": {
          "gears": "6",
          "type": "automatic"
        },
        "type": "FWD"
      },
      "emissions": {
        "class": {
          "code": "E5",
          "description": "E5",
          "efficiency": {
            "nedc": "B"
          }
        },
        "co2": {
          "nedc": "135"
        },
        "pricing": {
          "per_ton": {
            "high": "200",
            "low": "60",
            "medium": "127"
          },
          "range": {
            "end_year": "2035",
            "start_year": "2026"
          }
        }
      },
      "engine": {
        "construction": {
          "capacity": "1997",
          "cycle": "4",
          "cylinders": {
            "arrangement": "R",
            "count": "4"
          }
        },
        "output": {
          "power": {
            "hp": "140",
            "kw": "103",
            "max": {
              "at_rpm": "3750"
            }
          },
          "torque": {
            "max": {
              "at_rpm": "1750"
            },
            "nm": "320"
          }
        }
      },
      "fuel": {
        "average_price": {
          "electricity": "0.312",
          "fuel": "1.649",
          "year": "2024"
        },
        "capacity": "60",
        "consumption": {
          "nedc": {
            "city": "6.4",
            "combined": "5.1",
            "highway": "4.4"
          },
          "wltp": {
            "city": "7.2",
            "combined": "5.6",
            "motorway": "5.5",
            "petrol_equivalent": "5.6",
            "rural": "4.9",
            "town": "5.8"
          }
        },
        "type": {
          "category": "D",
          "code": "D",
          "name": "Diesel"
        }
      },
      "insurance_class": {
        "casco": {
          "complete": "17",
          "partial": "21"
        },
        "liability": "18"
      },
      "performance": {
        "acceleration": "9.6",
        "max_speed": "201"
      },
      "weight": {
        "limits": {
          "payload": "562",
          "roof": "75",
          "trailer": {
            "braked": "1500",
            "unbraked": "740"
          }
        },
        "total": "2050",
        "unloaded": "1488"
      },
      "wheels": {
        "tires": {
          "size": {
            "front": "215/55R16",
            "rear": "215/55R16"
          }
        }
      }
    },
    "valuation": {
      "price": {
        "original": {
          "gross": "28000.49",
          "net": "23530",
          "vat_rate": "19"
        }
      }
    }
  }
}

Vehicle Valuation Data. This is a proxy call to Dat's FinanceLine/soap/Evaluation:getVehicleEvaluation API. Docs: https://www.dat.de/fileadmin/de/support/interface-documentation/MG/SilverDAT_Schnittstellen-Kompendium_Mag/#/home/2156/20/21

post
Required scopes
This endpoint requires the following scopes:
  • : static vehicle data
Authorizations
OAuth2clientCredentialsRequired
Token URL:
Path parameters
vinstringRequired

Vehicle Identification number

Body
odometernumberOptionalExample: 1222
registration_datestringOptionalExample: 2010-01-01
country_codestringOptional

The target market for the valuation. A two-letter country code as defined in the ISO 3166-1 standard.

Example: DE
Responses
200

successful operation

application/json
post/v1/vehicle-static-data/{vin}/valuation
POST /v1/vehicle-static-data/{vin}/valuation HTTP/1.1
Host: api.high-mobility.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 70

{
  "odometer": 1222,
  "registration_date": "2010-01-01",
  "country_code": "DE"
}
{
  "valuation": {
    "price": {
      "base": {
        "1": "12786.00",
        "2": "15089.91",
        "3": "15089.91"
      },
      "purchase": {
        "net": "15571.43",
        "gross": "15571.43"
      },
      "orginal": {
        "net": "26324",
        "gross": "31325"
      },
      "sales": {
        "net": "17576.10",
        "gross": "17956.99"
      },
      "equipment": {
        "original": "0",
        "value": "0",
        "value_type": "calculated value"
      },
      "tires": {
        "default": "254.00"
      },
      "margin": {
        "net": "2004.67",
        "gross": "2385.56"
      },
      "initial_registration_correction": "617.39"
    },
    "condition": {
      "correction_factor_percentage": "100",
      "correction_amount": {
        "net": "0.00",
        "gross": "0.00"
      },
      "number_of_owners": "1",
      "sub_total": {
        "1": {
          "net": "15089.91",
          "gross": "17956.99"
        },
        "2": {
          "net": "15089.91",
          "gross": "17956.99"
        }
      }
    },
    "odometer": {
      "reference": "103000",
      "correction": "1686.52"
    },
    "meta": {
      "last_valuation_date": "2024-05-02T11:17:02.838+02:00",
      "residual_value_model": "dat",
      "type": "valuation"
    }
  },
  "vehicle": {
    "manufacturer": {
      "brand": "Jeep",
      "sub_model": "80th Anniversary Plug-In Hybrid 4WD",
      "type_group_name": "Compass",
      "model": "Compass (M7)(2020->)",
      "sales_description": "Compass 1.3 Plug-In Hybrid (EURO 6d) 80th Annivers",
      "vehicle_main_type_key": "111",
      "vehicle_sub_type_key": "30",
      "vehicle_type_key": "1"
    },
    "equipment": {
      "series_equipment": [],
      "special_equipment": []
    }
  }
}
Deprecated

Vehicle Static Data. This is a proxy call to Dat's FinanceLine/soap/VehicleIdentificationService:getVehicleIdentificationByVin API. Docs: https://www.dat.de/fileadmin/de/support/interface-documentation/MG/SilverDAT_Schnittstellen-Kompendium_Mag/#/home/1798/20/21

get
Required scopes
This endpoint requires the following scopes:
  • : static vehicle data
Authorizations
OAuth2clientCredentialsRequired
Token URL:
Path parameters
vinstringRequired

Vehicle Identification number

Responses
200

successful operation

application/json
get/v1/vehicle-static-data/{vin}
GET /v1/vehicle-static-data/{vin} HTTP/1.1
Host: api.high-mobility.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "manufacturer": {
    "vehicle_main_type_key": "160",
    "vehicle_sub_type_key": "63",
    "vehicle_type_key": "1",
    "sub_model": "220 i Luxury Line",
    "type_group_name": "2",
    "brand": "BMW",
    "model": "Serie 2 Gran Tourer (F46)(2015->)",
    "sales_description": "2er Gran Tourer - 220i Luxury Line"
  },
  "equipment": {
    "series_equipment": [
      {
        "description": "airbag driver side",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "airbag driver side/passenger side",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "airbag passenger side",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "airbag passenger side deactivatable",
        "positions": [],
        "manufacturer_id": "5DA"
      },
      {
        "description": "ambient lighting",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "antilock braking system (ABS)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "automatic air-conditioning system 2-zone with automatic recirculation control",
        "positions": [],
        "manufacturer_id": "534"
      },
      {
        "description": "automatic transmission - with Steptronic (8-speed)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "body: 5-door",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "brake assistant",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "cargo space cover / roll-up cover",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "center armrest front",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "center armrest rear",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "central locking system with remote control",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "Check-Control system",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "chrome line Exterieur",
        "positions": [],
        "manufacturer_id": "346"
      },
      {
        "description": "cruise control with brake function",
        "positions": [],
        "manufacturer_id": "544"
      },
      {
        "description": "daytime running lights LED",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "driver assistance system: alertness assistant",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "driver assistance system: collision warning system with brake function",
        "positions": [
          {
            "description": "driver assistance system: Active Guard (brake assistant)"
          }
        ],
        "manufacturer_id": null
      },
      {
        "description": "driver assistance system: driving-experience switch",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "dynamic brake light",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "dynamic stability control (DSC)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "dynamic traction control (DTC)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "engine 2,0 liter - 141 kW 16V",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "exhaust system (dual pipe system) with chrome trim covers",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "exterior mirror electrically adjustable",
        "positions": [
          {
            "description": "turn signal light in exterior mirror integrated"
          }
        ],
        "manufacturer_id": null
      },
      {
        "description": "exterior mirror vehicle colour",
        "positions": [
          {
            "description": "turn signal light in exterior mirror integrated"
          }
        ],
        "manufacturer_id": null
      },
      {
        "description": "floor mats velours",
        "positions": [],
        "manufacturer_id": "423"
      },
      {
        "description": "front fog lights LED",
        "positions": [],
        "manufacturer_id": "5A1"
      },
      {
        "description": "hands-free system Bluetooth with USB audio port",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "head airbag system front",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "head airbag system rear",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "headlight LED",
        "positions": [],
        "manufacturer_id": "5A2"
      },
      {
        "description": "heat protection glazing tinted",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "immobilizer",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "instrument panel with contrast seam",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "interior equipment instrument panel - below Piano Black",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "interior equipment interior trim strips hardwood Fineline",
        "positions": [],
        "manufacturer_id": "4LR"
      },
      {
        "description": "Isofix mounts for child seat at rear seat",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "liftgate control automatic",
        "positions": [],
        "manufacturer_id": "316"
      },
      {
        "description": "Light-alloy rims",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "light and rain sensor",
        "positions": [],
        "manufacturer_id": "521"
      },
      {
        "description": "Light package",
        "positions": [],
        "manufacturer_id": "563"
      },
      {
        "description": "low emissions according to emission standard Euro 6",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "Luxury Line",
        "positions": [],
        "manufacturer_id": "7LE"
      },
      {
        "description": "model refinement",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "multiple function for steering wheel",
        "positions": [],
        "manufacturer_id": "249"
      },
      {
        "description": "outside temperature display",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "parking brake electric",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "personalization system (Personal Profile)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "power outlet (12V outlet) in center console and trunk/load space (4-fold)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "power steering Servotronic",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "rear seat backrest split/folding (40:20:40)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "seat covers/upholstery: leather Dakota perforated",
        "positions": [],
        "manufacturer_id": "PDMY"
      },
      {
        "description": "seat heating front",
        "positions": [],
        "manufacturer_id": "494"
      },
      {
        "description": "seats rear mechanical adjustable",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "Service system: ConnectedDrive Services",
        "positions": [],
        "manufacturer_id": "6AK"
      },
      {
        "description": "Service system: intelligent emergency call incl. TeleServices",
        "positions": [],
        "manufacturer_id": "6AC"
      },
      {
        "description": "Service system: Remote Services",
        "positions": [],
        "manufacturer_id": "6AP"
      },
      {
        "description": "shift point indicator",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "shift/selector lever leather",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "sidebag front",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "sidebag rear",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "start/stop system (function)",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "steering column (steering wheel) mechanic. adjustable",
        "positions": [],
        "manufacturer_id": null
      },
      {
        "description": "steering wheel (sport/leather)",
        "positions": [],
        "manufacturer_id": "255"
      },
      {
        "description": "Storage package",
        "positions": [],
        "manufacturer_id": "493"
      },
      {
        "description": "theft protection for wheels (rim locks)",
        "positions": [],
        "manufacturer_id": "2PA"
      },
      {
        "description": "tire pressure control system",
        "positions": [],
        "manufacturer_id": "2VB"
      },
      {
        "description": "trip computer",
        "positions": [],
        "manufacturer_id": null
      }
    ],
    "special_equipment": [
      {
        "description": "3rd seat row",
        "positions": [],
        "manufacturer_id": "4UB"
      },
      {
        "description": "alarm system",
        "positions": [],
        "manufacturer_id": "302"
      },
      {
        "description": "Business package",
        "positions": [
          {
            "description": "navigation system: Navigation (USB)"
          },
          {
            "description": "colour monitor (6,5 inch)"
          },
          {
            "description": "lumbar support seat front left and right, electrically adjustable"
          },
          {
            "description": "interior mirror with automatic dimming"
          }
        ],
        "manufacturer_id": "9BD"
      },
      {
        "description": "driver assistance system: Driving Assistant",
        "positions": [
          {
            "description": "driver assistance system: high-beam assistant"
          },
          {
            "description": "driver assistance system: speed limit display"
          },
          {
            "description": "driver assistance system: collision warning system with brake function"
          },
          {
            "description": "driver assistance system: Active Guard (brake assistant)"
          },
          {
            "description": "driver assistance system: lane-departure warning system"
          }
        ],
        "manufacturer_id": "5AS"
      },
      {
        "description": "Entertainment package",
        "positions": [
          {
            "description": "CD drive"
          },
          {
            "description": "DAB-Tuner (radio reception digital)"
          },
          {
            "description": "sound system Harman-Kardon"
          },
          {
            "description": "Service system: Apple CarPlay information (preparation)"
          }
        ],
        "manufacturer_id": "9D5"
      },
      {
        "description": "Exclusive package",
        "positions": [
          {
            "description": "metallic paintwork"
          },
          {
            "description": "panoramic roof (glass)"
          },
          {
            "description": "sun protection glazing (rear darkened)"
          },
          {
            "description": "roof liner anthracite (BMW Individual)"
          },
          {
            "description": "seats front electrically adjustable"
          }
        ],
        "manufacturer_id": "9D8"
      },
      {
        "description": "fuel tank: enlarged",
        "positions": [],
        "manufacturer_id": "1AG"
      },
      {
        "description": "Park-Distance-Control (PDC) front and rear",
        "positions": [],
        "manufacturer_id": "508"
      },
      {
        "description": "reversing camera",
        "positions": [],
        "manufacturer_id": "3AG"
      },
      {
        "description": "roof rails aluminium satined",
        "positions": [],
        "manufacturer_id": "3AT"
      },
      {
        "description": "seats front electrically adjustable (left with Memory)",
        "positions": [],
        "manufacturer_id": "459"
      },
      {
        "description": "sports seats front",
        "positions": [],
        "manufacturer_id": "481"
      },
      {
        "description": "veh. without model lettering",
        "positions": [],
        "manufacturer_id": "320"
      }
    ]
  }
}

Last updated

Was this helpful?