List IdeaClouds
curl --request GET \
--url https://api.app.hrizn.io/v1/public/ideaclouds \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds"
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', 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', 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",
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.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:44.372053+00:00",
"updated_at": "2026-02-27T20:47:44.372053+00:00"
},
{
"id": "c65aed07-891e-478a-a5c0-9c07c41171f1",
"keyword": "2026 Chevy Silverado 3500 DRW",
"title": "2026 Chevy Silverado 3500 DRW: The Definitive Guide",
"synopsis": "This research consolidates 92 frequently asked questions about the 2026 Chevy Silverado 3500 DRW (dually) to create a comprehensive resource.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:29.94934+00:00",
"updated_at": "2026-02-27T20:47:29.94934+00:00"
}
],
"pagination": {
"has_more": true,
"next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMi0yN1QyMDo0NzoyOS45NDkzNCswMDowMCIsImlkIjoiYzY1YWVkMDctODkxZS00NzhhLWE1YzAtOWMwN2M0MTE3MWYxIn0=",
"total_count": 77
}
}
List IdeaClouds
List all IdeaClouds for this site
GET
/
ideaclouds
List IdeaClouds
curl --request GET \
--url https://api.app.hrizn.io/v1/public/ideaclouds \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds"
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', 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', 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",
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.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:44.372053+00:00",
"updated_at": "2026-02-27T20:47:44.372053+00:00"
},
{
"id": "c65aed07-891e-478a-a5c0-9c07c41171f1",
"keyword": "2026 Chevy Silverado 3500 DRW",
"title": "2026 Chevy Silverado 3500 DRW: The Definitive Guide",
"synopsis": "This research consolidates 92 frequently asked questions about the 2026 Chevy Silverado 3500 DRW (dually) to create a comprehensive resource.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:29.94934+00:00",
"updated_at": "2026-02-27T20:47:29.94934+00:00"
}
],
"pagination": {
"has_more": true,
"next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMi0yN1QyMDo0NzoyOS45NDkzNCswMDowMCIsImlkIjoiYzY1YWVkMDctODkxZS00NzhhLWE1YzAtOWMwN2M0MTE3MWYxIn0=",
"total_count": 77
}
}
Returns a paginated list of IdeaClouds for the site associated with your API key.
Scope required:
ideaclouds:read
Query parameters
integer
default:"25"
Results per page (1-100).
string
Pagination cursor from a previous response.
string
Filter by status. Possible values:
researching (research in progress), complete (ready to use for content creation), failed (research encountered an error).string
Search by keyword (case-insensitive partial match).
Response
object | null
The category assigned to this IdeaCloud, containing
id and name. Returns null if no category is assigned.{
"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.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:44.372053+00:00",
"updated_at": "2026-02-27T20:47:44.372053+00:00"
},
{
"id": "c65aed07-891e-478a-a5c0-9c07c41171f1",
"keyword": "2026 Chevy Silverado 3500 DRW",
"title": "2026 Chevy Silverado 3500 DRW: The Definitive Guide",
"synopsis": "This research consolidates 92 frequently asked questions about the 2026 Chevy Silverado 3500 DRW (dually) to create a comprehensive resource.",
"status": "complete",
"category": null,
"created_at": "2026-02-27T20:47:29.94934+00:00",
"updated_at": "2026-02-27T20:47:29.94934+00:00"
}
],
"pagination": {
"has_more": true,
"next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMi0yN1QyMDo0NzoyOS45NDkzNCswMDowMCIsImlkIjoiYzY1YWVkMDctODkxZS00NzhhLWE1YzAtOWMwN2M0MTE3MWYxIn0=",
"total_count": 77
}
}
Authorizations
Your Hrizn API key (prefix hzk_)
Query Parameters
Number of results per page
Required range:
1 <= x <= 100Base64-encoded pagination cursor
Filter by status (e.g. researching, complete, failed)
Case-insensitive partial match on keyword
Response
Paginated list of IdeaClouds
Hide child attributes
Hide child attributes
IdeaCloud research status
Available options:
researching, complete, failed Last modified on February 28, 2026
⌘I
