Skip to main content
GET
/
ideaclouds
/
{id}
Get IdeaCloud details
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/ideaclouds/{id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "23a66cb1-f5d9-4c91-b9d2-06c8203bd251",
    "keyword": "2026 Chevy Silverado 3500 DRW",
    "title": "2026 Chevy Silverado 3500 DRW: Deep Dive",
    "synopsis": "Comprehensive exploration of the 2026 Chevy Silverado 3500 DRW, covering specs, features, comparisons, and ownership considerations.",
    "tags": [
      "2026 Silverado 3500 DRW",
      "Chevy dually",
      "truck towing",
      "diesel truck",
      "heavy-duty truck"
    ],
    "status": "complete",
    "category": null,
    "recommended_questions": [
      { "id": "q-1772225333602-60", "question": "What are the key specs for the 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333601-0", "question": "What is the maximum towing capacity of the 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333601-5", "question": "What are the engine options for the 2026 Silverado 3500 dually?" },
      { "id": "q-1772225333601-20", "question": "What is the starting price for a 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333602-30", "question": "How does the 2026 Silverado 3500 DRW compare to the Ford F-350 DRW?" }
    ],
    "created_at": "2026-02-27T20:47:44.372053+00:00",
    "updated_at": "2026-02-27T20:47:44.372053+00:00"
  }
}
Returns the full details of an IdeaCloud including its status, title, synopsis, tags, and recommended questions with their text. Scope required: ideaclouds:read

Path parameters

id
string
required
UUID of the IdeaCloud.

Response

category
object | null
The category assigned to this IdeaCloud, containing id and name. Returns null if no category is assigned.
Array of recommended question objects, each containing the question ID and its text. Only populated when the IdeaCloud status is complete.
{
  "data": {
    "id": "23a66cb1-f5d9-4c91-b9d2-06c8203bd251",
    "keyword": "2026 Chevy Silverado 3500 DRW",
    "title": "2026 Chevy Silverado 3500 DRW: Deep Dive",
    "synopsis": "Comprehensive exploration of the 2026 Chevy Silverado 3500 DRW, covering specs, features, comparisons, and ownership considerations.",
    "tags": [
      "2026 Silverado 3500 DRW",
      "Chevy dually",
      "truck towing",
      "diesel truck",
      "heavy-duty truck"
    ],
    "status": "complete",
    "category": null,
    "recommended_questions": [
      { "id": "q-1772225333602-60", "question": "What are the key specs for the 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333601-0", "question": "What is the maximum towing capacity of the 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333601-5", "question": "What are the engine options for the 2026 Silverado 3500 dually?" },
      { "id": "q-1772225333601-20", "question": "What is the starting price for a 2026 Chevy Silverado 3500 DRW?" },
      { "id": "q-1772225333602-30", "question": "How does the 2026 Silverado 3500 DRW compare to the Ford F-350 DRW?" }
    ],
    "created_at": "2026-02-27T20:47:44.372053+00:00",
    "updated_at": "2026-02-27T20:47:44.372053+00:00"
  }
}
Question IDs use the format q-{timestamp}-{index} (e.g. q-1772246824308-0), not UUIDs. Use these IDs as-is when passing selected_question_ids to the content creation endpoints.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

IdeaCloud ID

Response

IdeaCloud details

data
object
Last modified on March 1, 2026