Skip to main content
GET
/
site
/
elements
List site elements
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/site/elements \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "elements": [
      {
        "id": "b3933cb2-5176-4255-907e-b508ea8927d9",
        "type": "staff",
        "content": {
          "role": "Master Technician",
          "imageKey": null,
          "lastName": "Armorer",
          "firstName": "Shawn",
          "yearHired": 2016
        },
        "created_at": "2026-02-27T19:47:53.347064+00:00",
        "updated_at": "2026-02-27T19:47:53.347064+00:00"
      },
      {
        "id": "41749ea2-38eb-4cc2-9779-93dcbeb4ad53",
        "type": "staff",
        "content": {
          "role": "Master Technician",
          "imageKey": null,
          "lastName": "Schlesinger",
          "firstName": "Eric",
          "yearHired": 2016
        },
        "created_at": "2026-02-23T18:46:08.234091+00:00",
        "updated_at": "2026-02-23T18:46:08.234091+00:00"
      }
    ]
  }
}
Returns all raw site elements configured for this site. Each element has a type and a content object whose shape varies by type. This is a low-level endpoint — for more convenient access, use the typed endpoints like Get staff, Get links, and Get target geography. Scope required: site:read
{
  "data": {
    "elements": [
      {
        "id": "b3933cb2-5176-4255-907e-b508ea8927d9",
        "type": "staff",
        "content": {
          "role": "Master Technician",
          "imageKey": null,
          "lastName": "Armorer",
          "firstName": "Shawn",
          "yearHired": 2016
        },
        "created_at": "2026-02-27T19:47:53.347064+00:00",
        "updated_at": "2026-02-27T19:47:53.347064+00:00"
      },
      {
        "id": "41749ea2-38eb-4cc2-9779-93dcbeb4ad53",
        "type": "staff",
        "content": {
          "role": "Master Technician",
          "imageKey": null,
          "lastName": "Schlesinger",
          "firstName": "Eric",
          "yearHired": 2016
        },
        "created_at": "2026-02-23T18:46:08.234091+00:00",
        "updated_at": "2026-02-23T18:46:08.234091+00:00"
      }
    ]
  }
}
The content object shape varies by element type. Common types include staff, link, target_geo, marketing, and why_buys. Use the typed sub-endpoints for a more structured response.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Query Parameters

type
string

Filter by element type

Response

Site elements

data
object
Last modified on March 1, 2026