Skip to main content
GET
/
inventory
/
{vin}
Get vehicle details
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/inventory/{vin} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "vin": "1C4HJXEG5NW195712",
    "year": 2022,
    "make": "Jeep",
    "model": "Wrangler Unlimited",
    "trim": "Sahara 4x4",
    "vehicle_type": "Used",
    "price": 27759,
    "mileage": 45225,
    "exterior_color": "Bright White Clearcoat",
    "interior_color": "Black",
    "engine": "Pentastar 3.6L V-6 DOHC, variable valve control, regular unleaded, engine with 285HP",
    "transmission": "Automatic",
    "drivetrain": "Four Wheel Drive",
    "fuel_type": "Regular unleaded",
    "body_style": "Sport Utility",
    "stock_number": "U17968I",
    "image_url": "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg",
    "images": [
      "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg",
      "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded73b109513bccc1574.jpg"
    ],
    "ai_description": null,
    "description_status": "complete",
    "created_at": "2026-01-29T00:06:11.249565+00:00",
    "updated_at": "2026-02-28T09:02:26.966306+00:00"
  }
}
Returns complete vehicle details including specs, pricing, photos, and AI description status. Scope required: inventory:read

Path parameters

vin
string
required
Vehicle Identification Number (11-17 characters).
{
  "data": {
    "vin": "1C4HJXEG5NW195712",
    "year": 2022,
    "make": "Jeep",
    "model": "Wrangler Unlimited",
    "trim": "Sahara 4x4",
    "vehicle_type": "Used",
    "price": 27759,
    "mileage": 45225,
    "exterior_color": "Bright White Clearcoat",
    "interior_color": "Black",
    "engine": "Pentastar 3.6L V-6 DOHC, variable valve control, regular unleaded, engine with 285HP",
    "transmission": "Automatic",
    "drivetrain": "Four Wheel Drive",
    "fuel_type": "Regular unleaded",
    "body_style": "Sport Utility",
    "stock_number": "U17968I",
    "image_url": "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg",
    "images": [
      "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg",
      "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded73b109513bccc1574.jpg"
    ],
    "ai_description": null,
    "description_status": "complete",
    "created_at": "2026-01-29T00:06:11.249565+00:00",
    "updated_at": "2026-02-28T09:02:26.966306+00:00"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

vin
string
required

Vehicle Identification Number

Required string length: 11 - 17

Response

Vehicle details

data
object
Last modified on March 1, 2026