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": 123,
    "vehicles": [
      {
        "vin": "<string>",
        "year": 123,
        "make": "<string>",
        "model": "<string>",
        "trim": "<string>",
        "vehicle_type": "<string>",
        "price": 123,
        "mileage": 123,
        "exterior_color": "<string>",
        "interior_color": "<string>",
        "ai_description": "<string>",
        "image_url": "<string>"
      }
    ]
  }
}

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 February 28, 2026