Get publish data
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content/{id}/publish-data \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content/{id}/publish-data"
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/content/{id}/publish-data', 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/content/{id}/publish-data', 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/content/{id}/publish-data",
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": {
"article": {
"id": "bccf2a98-55ad-437d-b0dc-d505d95c88cf",
"title": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"article_type": "comparison",
"created_at": "2026-02-13T22:56:41.872443+00:00",
"updated_at": "2026-04-11T15:45:37.297587+00:00"
},
"publishing": {
"status": "published",
"slug": "land-cruiser-vs-bronco-rock-hill-comparison",
"canonical_url": "https://www.toyotarockhill.com/land-cruiser-vs-bronco-rock-hill-comparison",
"date": "2026-04-11T15:45:37.264+00:00",
"published_at": "2026-04-11T15:45:37.264+00:00"
},
"taxonomy": {
"blog_tags": ["Toyota Land Cruiser", "Ford Bronco", "SUV Comparison"],
"blog_categories": ["Vehicle Comparisons"],
"keywords": ["land cruiser vs bronco", "toyota suv comparison"]
},
"images": {
"featured": "https://assets.hrizn.io/public/media-library/9c894353.../featured.png",
"og": "https://assets.hrizn.io/public/media-library/9c894353.../og.png",
"twitter": "https://assets.hrizn.io/public/media-library/9c894353.../twitter.png"
},
"social": {
"og_title": "Challenge the Trails: Land Cruiser vs. Bronco Showdown!",
"og_description": "Dive into the ultimate showdown at Toyota of Rock Hill! Is the Land Cruiser's rugged luxury your style, or do you crave the Bronco's off-road thrills?",
"twitter_title": "Rugged Meets Refined: Land Cruiser or Bronco for Your Next Adventure?",
"twitter_description": "Who reigns supreme on the off-road trails? Compare the Toyota Land Cruiser and Ford Bronco at Toyota of Rock Hill."
},
"body_html": "<h2>Land Cruiser vs Bronco Face-Off</h2><p>When it comes to choosing between these two iconic SUVs...</p>",
"seo_html": "<!-- Title Tags -->\n<title>Toyota Land Cruiser vs Ford Bronco in Rock Hill SC | Toyota of Rock Hill</title>\n<meta property=\"og:title\" content=\"Challenge the Trails: Land Cruiser vs. Bronco Showdown!\" />",
"schema": {
"@context": "https://schema.org",
"@graph": [
{
"@type": "NewsArticle",
"@id": "#article",
"headline": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"datePublished": "2026-02-13T22:56:41.872Z",
"dateModified": "2026-04-11T15:43:39.100Z"
}
]
}
}
}
Get publish data
Get the complete publish payload for CMS integration
GET
/
content
/
{id}
/
publish-data
Get publish data
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content/{id}/publish-data \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content/{id}/publish-data"
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/content/{id}/publish-data', 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/content/{id}/publish-data', 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/content/{id}/publish-data",
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": {
"article": {
"id": "bccf2a98-55ad-437d-b0dc-d505d95c88cf",
"title": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"article_type": "comparison",
"created_at": "2026-02-13T22:56:41.872443+00:00",
"updated_at": "2026-04-11T15:45:37.297587+00:00"
},
"publishing": {
"status": "published",
"slug": "land-cruiser-vs-bronco-rock-hill-comparison",
"canonical_url": "https://www.toyotarockhill.com/land-cruiser-vs-bronco-rock-hill-comparison",
"date": "2026-04-11T15:45:37.264+00:00",
"published_at": "2026-04-11T15:45:37.264+00:00"
},
"taxonomy": {
"blog_tags": ["Toyota Land Cruiser", "Ford Bronco", "SUV Comparison"],
"blog_categories": ["Vehicle Comparisons"],
"keywords": ["land cruiser vs bronco", "toyota suv comparison"]
},
"images": {
"featured": "https://assets.hrizn.io/public/media-library/9c894353.../featured.png",
"og": "https://assets.hrizn.io/public/media-library/9c894353.../og.png",
"twitter": "https://assets.hrizn.io/public/media-library/9c894353.../twitter.png"
},
"social": {
"og_title": "Challenge the Trails: Land Cruiser vs. Bronco Showdown!",
"og_description": "Dive into the ultimate showdown at Toyota of Rock Hill! Is the Land Cruiser's rugged luxury your style, or do you crave the Bronco's off-road thrills?",
"twitter_title": "Rugged Meets Refined: Land Cruiser or Bronco for Your Next Adventure?",
"twitter_description": "Who reigns supreme on the off-road trails? Compare the Toyota Land Cruiser and Ford Bronco at Toyota of Rock Hill."
},
"body_html": "<h2>Land Cruiser vs Bronco Face-Off</h2><p>When it comes to choosing between these two iconic SUVs...</p>",
"seo_html": "<!-- Title Tags -->\n<title>Toyota Land Cruiser vs Ford Bronco in Rock Hill SC | Toyota of Rock Hill</title>\n<meta property=\"og:title\" content=\"Challenge the Trails: Land Cruiser vs. Bronco Showdown!\" />",
"schema": {
"@context": "https://schema.org",
"@graph": [
{
"@type": "NewsArticle",
"@id": "#article",
"headline": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"datePublished": "2026-02-13T22:56:41.872Z",
"dateModified": "2026-04-11T15:43:39.100Z"
}
]
}
}
}
Returns a unified publish payload containing everything needed to push content to a CMS or website: article metadata, publishing status, taxonomy, images, social tags, rendered HTML body, SEO meta tags, and structured data (JSON-LD schema).
Scope required:
content:read
Returns
404 if the content is not published or scheduled. Use List published content to discover available content first.Path parameters
string
required
UUID of the content.
Response
The response is a single object with the following top-level sections:object
Core article metadata:
id, title, article_type, created_at, updated_at.object
Publishing state:
status (published or scheduled), slug, canonical_url, date (ISO 8601, UTC), published_at (ISO 8601, UTC).All date and time fields — including scheduled post dates — are returned in UTC with a
+00:00 offset. Convert to the appropriate local timezone on your side before displaying to end users.object
Content classification:
blog_tags (string array), blog_categories (string array), keywords (string array).object
Resolved image URLs:
featured, og, twitter. Each is a fully-qualified URL or null.object
Social sharing metadata:
og_title, og_description, twitter_title, twitter_description.string | null
The full rendered HTML body, ready for CMS embedding. For visual builder content this is the pre-rendered layout HTML; for markdown content it includes Bootstrap table classes and a Hrizn attribution tag.
string | null
Rendered SEO meta tag HTML string (title, og, twitter meta tags) for injection into the page
<head>.object | null
JSON-LD structured data (
@context, @graph with NewsArticle, Author, Organization, etc.).{
"data": {
"article": {
"id": "bccf2a98-55ad-437d-b0dc-d505d95c88cf",
"title": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"article_type": "comparison",
"created_at": "2026-02-13T22:56:41.872443+00:00",
"updated_at": "2026-04-11T15:45:37.297587+00:00"
},
"publishing": {
"status": "published",
"slug": "land-cruiser-vs-bronco-rock-hill-comparison",
"canonical_url": "https://www.toyotarockhill.com/land-cruiser-vs-bronco-rock-hill-comparison",
"date": "2026-04-11T15:45:37.264+00:00",
"published_at": "2026-04-11T15:45:37.264+00:00"
},
"taxonomy": {
"blog_tags": ["Toyota Land Cruiser", "Ford Bronco", "SUV Comparison"],
"blog_categories": ["Vehicle Comparisons"],
"keywords": ["land cruiser vs bronco", "toyota suv comparison"]
},
"images": {
"featured": "https://assets.hrizn.io/public/media-library/9c894353.../featured.png",
"og": "https://assets.hrizn.io/public/media-library/9c894353.../og.png",
"twitter": "https://assets.hrizn.io/public/media-library/9c894353.../twitter.png"
},
"social": {
"og_title": "Challenge the Trails: Land Cruiser vs. Bronco Showdown!",
"og_description": "Dive into the ultimate showdown at Toyota of Rock Hill! Is the Land Cruiser's rugged luxury your style, or do you crave the Bronco's off-road thrills?",
"twitter_title": "Rugged Meets Refined: Land Cruiser or Bronco for Your Next Adventure?",
"twitter_description": "Who reigns supreme on the off-road trails? Compare the Toyota Land Cruiser and Ford Bronco at Toyota of Rock Hill."
},
"body_html": "<h2>Land Cruiser vs Bronco Face-Off</h2><p>When it comes to choosing between these two iconic SUVs...</p>",
"seo_html": "<!-- Title Tags -->\n<title>Toyota Land Cruiser vs Ford Bronco in Rock Hill SC | Toyota of Rock Hill</title>\n<meta property=\"og:title\" content=\"Challenge the Trails: Land Cruiser vs. Bronco Showdown!\" />",
"schema": {
"@context": "https://schema.org",
"@graph": [
{
"@type": "NewsArticle",
"@id": "#article",
"headline": "Land Cruiser vs Bronco Face-Off: Rugged Luxury or Off-Road Fun?",
"datePublished": "2026-02-13T22:56:41.872Z",
"dateModified": "2026-04-11T15:43:39.100Z"
}
]
}
}
}
Subscribe to the
content.published webhook event to automatically trigger a CMS sync whenever content is published. Then call this endpoint to fetch the full payload.Authorizations
Your Hrizn API key (prefix hzk_)
Path Parameters
Content ID
Response
Complete publish payload
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Available options:
published, scheduled Publish or scheduled date (ISO 8601, UTC)
Timestamp when first published (ISO 8601, UTC)
Full rendered HTML body ready for CMS embedding
Rendered SEO meta tag HTML for injection into page head
JSON-LD structured data
Last modified on May 1, 2026
