Base URL:https://api.app.hrizn.io/v1/public — all examples below use this production URL.
1
Get an API Key
Navigate to the Dealership Manager in the Hrizn Dashboard, select a dealership, and click the API tab. Click Create API Key, select the scopes you need, and copy the key.
The raw API key is shown only once at creation time. Store it securely.
API keys always start with the hzk_ prefix. If your key doesn’t start with hzk_, something went wrong — regenerate it from the dashboard.
2
Test the Connection
Verify your key works by hitting the health endpoint:
curl -X POST https://api.app.hrizn.io/v1/public/ideaclouds \ -H "X-API-Key: hzk_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "keyword": "2026 Chevrolet Equinox EV range and features" }'
Response (202 Accepted):
{ "data": { "id": "bd72cd59-beda-4ce5-a9a1-20acf16c9a5d", "status": "researching", "keyword": "2026 Chevrolet Equinox EV range and features" }}