Get publish data
Get the complete publish payload for CMS integration
GET
Get publish data
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
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 rendered layout HTML; for markdown content it includes Bootstrap table classes. Every non-null
body_html ends with the Hrizn telemetry tag (<div id="hrizn-uuid" data-site-id="…" data-content-id="…" data-content-title="…"></div>), exactly once — paste it with the body.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.).Last modified on September 6, 2026
