CheapVHR LogoCheapVHR LogoCheapVHR

CheapVHR API Documentation

  • Getting Started
  • Authentication
  • User
  • CARFAX Reports
  • Autocheck Reports
  • Record Counts
  • Error Responses
CheapVHR LogoCheapVHR LogoCheapVHR
Loading...

Record Counts

Get the number of CARFAX and Autocheck records available for a VIN.

GET/records/vin/{VIN}
Get the available CARFAX and Autocheck record counts for a Vehicle Identification Number

Path Parameters

VINVehicle Identification Number (string, 17 characters)

Authentication

x-api-key header required

Use VIN 1FMDU34X7PUD75574 for testing.

Code Examples

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

Response

Returns the year/make/model and available record counts for the VIN

JSON
{
  "vehicle": {
    "year": 1993,
    "make": "FORD",
    "model": "EXPLORER"
  },
  "carfax_records": 12,
  "autocheck_records": 8
}