Skip to main content
POST
/
model-landing-pages
Create model landing page
curl --request POST \
  --url https://api.app.hrizn.io/v1/public/model-landing-pages \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "year": 2026,
  "make": "Honda",
  "model": "Civic"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "generating",
    "article_type": "modellanding",
    "title": "<string>",
    "vehicle": {
      "year": 2026,
      "make": "Toyota",
      "model": "Camry",
      "trim": "XSE"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "message": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Body

application/json
year
integer
required
Required range: 1900 <= x <= 2100
Example:

2026

make
string
required
Required string length: 1 - 100
Example:

"Honda"

model
string
required
Required string length: 1 - 100
Example:

"Civic"

trim
string
Maximum string length: 200
Example:

"Sport Touring"

brand_voice_id
string

ID of a brand voice profile to use for tone and style

language
enum<string>
default:English
Available options:
English,
Spanish,
Mandarin Chinese,
Japanese,
Korean,
Arabic,
Farsi,
Hebrew,
French,
Tagalog,
Vietnamese,
Portuguese,
Russian
title
string

Custom title. Defaults to "Year Make Model [Trim]"

Maximum string length: 500

Response

Model landing page generation started

data
object
Last modified on February 28, 2026