List IdeaCloud create suggestions
curl --request GET \
--url https://api.app.hrizn.io/v1/public/ideaclouds/create-suggestions \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds/create-suggestions"
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/create-suggestions', 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/create-suggestions', 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/create-suggestions",
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": {
"suggestions": [
{
"id": "<string>",
"source": "<string>",
"title": "<string>",
"subtitle": "<string>",
"short_reason": "<string>",
"priority": 123,
"keyword": "<string>",
"content_suggestion_id": "<string>",
"external_source": "<string>",
"external_fingerprint": "<string>"
}
],
"sources": {},
"suppressed_external_count": 123
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}List IdeaCloud create suggestions
Compact create-dropdown suggestions (content + Fast Start) with the same act-on / external-suppression filters used by Composer. Requires ideaclouds:write.
GET
/
ideaclouds
/
create-suggestions
List IdeaCloud create suggestions
curl --request GET \
--url https://api.app.hrizn.io/v1/public/ideaclouds/create-suggestions \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/ideaclouds/create-suggestions"
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/create-suggestions', 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/create-suggestions', 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/create-suggestions",
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": {
"suggestions": [
{
"id": "<string>",
"source": "<string>",
"title": "<string>",
"subtitle": "<string>",
"short_reason": "<string>",
"priority": 123,
"keyword": "<string>",
"content_suggestion_id": "<string>",
"external_source": "<string>",
"external_fingerprint": "<string>"
}
],
"sources": {},
"suppressed_external_count": 123
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}{
"error": {
"code": "validation_error",
"message": "keyword: Required",
"details": {},
"request_id": "<string>"
}
}Authorizations
Your Hrizn API key (prefix hzk_)
Response
Suggestion cards
Hide child attributes
Hide child attributes
Hide child attributes
Hide child attributes
Last modified on July 26, 2026
⌘I
