Skip to main content
GET
/
content
/
{id}
Get content details
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/content/{id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "4d42cdcf-e24f-4123-960e-6c15761fcfcf",
    "title": "Unveiling the Power and Performance of the 2026 Chevy Silverado 3500 DRW",
    "status": "complete",
    "article_type": "basic",
    "category": {
      "id": "b24ad569-f7ce-47ad-be44-cec02c0fab70",
      "name": "2026 Chevy Silverado 3500 DRW"
    },
    "ideacloud": null,
    "metadata": {
      "tone": "BrandVoice:profile-1751473166161",
      "language": "English",
      "maxTokens": 1600
    },
    "components": [
      { "type": "body", "status": "complete", "updated_at": "2026-02-27T21:42:56.625882+00:00" },
      { "type": "searchIntent", "status": "complete", "updated_at": "2026-02-27T21:42:57.458068+00:00" },
      { "type": "imagePrompt", "status": "complete", "updated_at": "2026-02-27T21:43:02.084779+00:00" },
      { "type": "seoMetadata", "status": "complete", "updated_at": "2026-02-27T21:46:57.094555+00:00" },
      { "type": "facebookSnip", "status": "complete", "updated_at": "2026-02-27T21:47:21.541289+00:00" }
    ],
    "created_at": "2026-02-27T21:41:20.418301+00:00",
    "updated_at": "2026-02-27T21:42:56.623718+00:00"
  }
}
Returns content metadata and a summary of its components. Scope required: content:read

Path parameters

id
string
required
UUID of the content.

Response

status
string
Content status: generating, complete, failed, or awaiting_input.
category
object | null
The category assigned to this content, containing id and name. Returns null if no category is assigned.
ideacloud
object | null
The IdeaCloud used to generate this content, containing id and keyword. Returns null if the content was not generated from an IdeaCloud (e.g. older content).
metadata
object
Flexible metadata object. For API-created content, includes source ("public_api"), api_key_id, and api_creator_label (formatted as “API - Name (email)”). May also contain generation parameters like tone, language, and selected_question_ids.
{
  "data": {
    "id": "4d42cdcf-e24f-4123-960e-6c15761fcfcf",
    "title": "Unveiling the Power and Performance of the 2026 Chevy Silverado 3500 DRW",
    "status": "complete",
    "article_type": "basic",
    "category": {
      "id": "b24ad569-f7ce-47ad-be44-cec02c0fab70",
      "name": "2026 Chevy Silverado 3500 DRW"
    },
    "ideacloud": null,
    "metadata": {
      "tone": "BrandVoice:profile-1751473166161",
      "language": "English",
      "maxTokens": 1600
    },
    "components": [
      { "type": "body", "status": "complete", "updated_at": "2026-02-27T21:42:56.625882+00:00" },
      { "type": "searchIntent", "status": "complete", "updated_at": "2026-02-27T21:42:57.458068+00:00" },
      { "type": "imagePrompt", "status": "complete", "updated_at": "2026-02-27T21:43:02.084779+00:00" },
      { "type": "seoMetadata", "status": "complete", "updated_at": "2026-02-27T21:46:57.094555+00:00" },
      { "type": "facebookSnip", "status": "complete", "updated_at": "2026-02-27T21:47:21.541289+00:00" }
    ],
    "created_at": "2026-02-27T21:41:20.418301+00:00",
    "updated_at": "2026-02-27T21:42:56.623718+00:00"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Content ID

Response

Content details

data
object
Last modified on March 1, 2026