List staff members
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/staff \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/staff"
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/staff', 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/staff', 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/staff",
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": {
"staff": [
{
"id": "a04ddd07-86c9-426d-b0b6-dae743cc9f2d",
"first_name": "Malcolm",
"last_name": "Heath",
"role": "General Manager",
"years_experience": 10,
"created_at": "2025-11-10T18:18:18.005367+00:00",
"updated_at": "2025-11-10T18:18:18.005367+00:00"
},
{
"id": "29fdc0a4-7512-4713-bc8e-0cd3a23208c9",
"first_name": "Kyle",
"last_name": "Morissette",
"role": "Service Director",
"years_experience": 10,
"created_at": "2025-10-22T17:42:50.189303+00:00",
"updated_at": "2025-10-22T17:42:50.189303+00:00"
}
]
}
}
Get staff members
Returns all staff members configured for the dealership
GET
/
site
/
staff
List staff members
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/staff \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/staff"
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/staff', 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/staff', 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/staff",
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": {
"staff": [
{
"id": "a04ddd07-86c9-426d-b0b6-dae743cc9f2d",
"first_name": "Malcolm",
"last_name": "Heath",
"role": "General Manager",
"years_experience": 10,
"created_at": "2025-11-10T18:18:18.005367+00:00",
"updated_at": "2025-11-10T18:18:18.005367+00:00"
},
{
"id": "29fdc0a4-7512-4713-bc8e-0cd3a23208c9",
"first_name": "Kyle",
"last_name": "Morissette",
"role": "Service Director",
"years_experience": 10,
"created_at": "2025-10-22T17:42:50.189303+00:00",
"updated_at": "2025-10-22T17:42:50.189303+00:00"
}
]
}
}
Returns all staff members configured for the site. Staff information is used by the AI to personalize content with real employee names and roles.
Scope required:
site:read
{
"data": {
"staff": [
{
"id": "a04ddd07-86c9-426d-b0b6-dae743cc9f2d",
"first_name": "Malcolm",
"last_name": "Heath",
"role": "General Manager",
"years_experience": 10,
"created_at": "2025-11-10T18:18:18.005367+00:00",
"updated_at": "2025-11-10T18:18:18.005367+00:00"
},
{
"id": "29fdc0a4-7512-4713-bc8e-0cd3a23208c9",
"first_name": "Kyle",
"last_name": "Morissette",
"role": "Service Director",
"years_experience": 10,
"created_at": "2025-10-22T17:42:50.189303+00:00",
"updated_at": "2025-10-22T17:42:50.189303+00:00"
}
]
}
}
Authorizations
Your Hrizn API key (prefix hzk_)
Response
Staff members
Hide child attributes
Hide child attributes
Last modified on March 15, 2026
⌘I
