Skip to main content
GET
/
inventory
/
feed
Get inventory feed
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/inventory/feed \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "count": 254,
    "vehicles": [
      {
        "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",
        "ai_description": null,
        "image_url": "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.hrizn.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns the complete inventory feed with vehicle data and AI descriptions. Supports JSON and XML output formats. Scope required: inventory:read

Query parameters

format
string
default:"json"
Response format: json or xml.
{
  "data": {
    "count": 254,
    "vehicles": [
      {
        "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",
        "ai_description": null,
        "image_url": "https://cdnrs.inventoryrsc.com/640x480/490008540_697aded63b109513bccc1573.jpg"
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Query Parameters

format
enum<string>
default:json

Response format

Available options:
json,
xml

Response

Inventory feed

data
object
Last modified on March 1, 2026