CheapVHR LogoCheapVHR

Autocheck Reports

Get Autocheck vehicle history reports by VIN or report ID.

GET/autocheck/vin/{VIN}/html
Get Autocheck report (HTML) by Vehicle Identification Number

This endpoint uses 1 credit per request.

Path Parameters

VINVehicle Identification Number (string)

Authentication

x-api-key header required

Use VIN 1FMDU34X7PUD75574 for testing.

Code Examples

bash
curl -X GET \
  https://api.cheapvhr.com/v1/autocheck/vin/1FMDU34X7PUD75574/html \
  -H "x-api-key: YOUR_API_KEY"

Response

Returns HTML content of the Autocheck report

JSON
{
  "yearMakeModel": "1993 FORD EXPLORER XLT",
  "vin": "1FMDU34X7PUD75574",
  "id": "2",
  "html": "<!-- HTML CONTENT HERE -->"
}
GET/autocheck/{REPORT_ID}
Get existing Autocheck report by report ID

Path Parameters

REPORT_IDReport identifier (string)

Authentication

x-api-key header required

Code Examples

bash
curl -X GET \
  https://api.cheapvhr.com/v1/autocheck/2 \
  -H "x-api-key: YOUR_API_KEY"

Response

JSON
{
  "id": "2",
  "yearMakeModel": "1993 FORD EXPLORER XLT",
  "VIN": "1FMDU34X7PUD75574",
  "html": "<!-- HTML CONTENT HERE -->
}