Get IdeaCloud details
curl --request GET \
--url https://api.app.hrizn.io/v1/public/ideaclouds/{id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds/{id}"
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/ideaclouds/{id}', 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/ideaclouds/{id}', 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/ideaclouds/{id}",
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": {
"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"
}
}
Get IdeaCloud
Get details and status of a specific IdeaCloud
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>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds/{id}"
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/ideaclouds/{id}', 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/ideaclouds/{id}', 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/ideaclouds/{id}",
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": {
"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
UUID of the IdeaCloud.
Response
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
Your Hrizn API key (prefix hzk_)
Path Parameters
IdeaCloud ID
Response
IdeaCloud details
Hide child attributes
Hide child attributes
IdeaCloud research status
Available options:
researching, complete, failed Last modified on February 28, 2026
⌘I
