Skip to main content
GET
/
content
/
{id}
/
components
/
{type}
Get a single component
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/content/{id}/components/{type} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "<string>",
    "type": "body",
    "content": {},
    "metadata": {},
    "status": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Content ID

type
enum<string>
required

Component type (case-insensitive) Component type identifier (camelCase). The path parameter is case-insensitive (e.g. body, Body, and BODY all work), but the API returns the canonical camelCase form in responses.

Available options:
body,
seoMetadata,
pageSlugs,
postTags,
blogCategories,
searchIntent,
facebookSnip,
twitterSnip,
instagramSnip,
googleBusinessSnip,
videoScript,
imagePrompt,
articleSchema,
authorSchema,
organizationSchema,
vehicleListingSchema,
faqSchema,
eventSchema,
qaPageSchema,
webPageSchema,
webSiteSchema,
breadcrumbSchema

Response

Single component

data
object
Last modified on March 1, 2026