List site links
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/links \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/links"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/site/links",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"links": [
{
"id": "302f00df-1cbb-4cab-8014-141324596e92",
"type": "new_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=new",
"label": "New Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "642da1c4-7bb8-4524-b29b-04ecc164f3fd",
"type": "used_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=preowned",
"label": "Pre-Owned Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "fd8d75d6-7f99-48a5-9b2f-fc528ef7a0ce",
"type": "service_scheduler",
"url": "https://www.shopempirechevrolet.com/ServiceApptForm",
"label": "Schedule Service",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
}
]
}
}
Get site links
Returns all configured dealership links
GET
/
site
/
links
List site links
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/links \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/links"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/site/links",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"links": [
{
"id": "302f00df-1cbb-4cab-8014-141324596e92",
"type": "new_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=new",
"label": "New Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "642da1c4-7bb8-4524-b29b-04ecc164f3fd",
"type": "used_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=preowned",
"label": "Pre-Owned Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "fd8d75d6-7f99-48a5-9b2f-fc528ef7a0ce",
"type": "service_scheduler",
"url": "https://www.shopempirechevrolet.com/ServiceApptForm",
"label": "Schedule Service",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
}
]
}
}
Returns all link elements configured for the site, such as SRP pages, service schedulers, credit applications, and custom links. These are used by the AI when generating content that references dealership pages.
Scope required:
site:read
{
"data": {
"links": [
{
"id": "302f00df-1cbb-4cab-8014-141324596e92",
"type": "new_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=new",
"label": "New Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "642da1c4-7bb8-4524-b29b-04ecc164f3fd",
"type": "used_vehicles_srp",
"url": "https://www.shopempirechevrolet.com/VehicleSearchResults?search=preowned",
"label": "Pre-Owned Vehicles",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
},
{
"id": "fd8d75d6-7f99-48a5-9b2f-fc528ef7a0ce",
"type": "service_scheduler",
"url": "https://www.shopempirechevrolet.com/ServiceApptForm",
"label": "Schedule Service",
"created_at": "2025-01-27T20:32:43.639958+00:00",
"updated_at": "2025-01-27T20:32:43.639958+00:00"
}
]
}
}
Authorizations
Your Hrizn API key (prefix hzk_)
Response
Site links
Last modified on February 28, 2026
⌘I
