Skip to main content
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>'
{
  "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"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.hrizn.io/llms.txt

Use this file to discover all available pages before exploring further.

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

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Response

Staff members

data
object
Last modified on March 12, 2026