List available scopes
curl --request GET \
--url https://api.app.hrizn.io/v1/public/reference/scopes \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/reference/scopes"
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/reference/scopes', 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/reference/scopes', 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/reference/scopes",
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": {
"scopes": {
"ideaclouds:read": "List and view IdeaClouds and questions",
"ideaclouds:write": "Create IdeaClouds",
"content:read": "List and view content, components, HTML",
"content:write": "Create content, trigger generation",
"compliance:write": "Trigger compliance checks",
"content_tools:write": "Generate schemas, meta, social snippets",
"inventory:read": "List and view inventory, descriptions, feeds",
"inventory:write": "Trigger inventory description generation",
"webhooks:read": "View webhook subscriptions and deliveries",
"webhooks:write": "Create, update, delete webhook subscriptions",
"site:read": "View site details, brand voices, elements, categories",
"content_intelligence:read": "List and view content intelligence recommendations, dismiss recommendations",
"content_intelligence:write": "Act on recommendations and bulk-dismiss"
}
}
}
Scopes
List all API key scopes
GET
/
reference
/
scopes
List available scopes
curl --request GET \
--url https://api.app.hrizn.io/v1/public/reference/scopes \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/reference/scopes"
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/reference/scopes', 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/reference/scopes', 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/reference/scopes",
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": {
"scopes": {
"ideaclouds:read": "List and view IdeaClouds and questions",
"ideaclouds:write": "Create IdeaClouds",
"content:read": "List and view content, components, HTML",
"content:write": "Create content, trigger generation",
"compliance:write": "Trigger compliance checks",
"content_tools:write": "Generate schemas, meta, social snippets",
"inventory:read": "List and view inventory, descriptions, feeds",
"inventory:write": "Trigger inventory description generation",
"webhooks:read": "View webhook subscriptions and deliveries",
"webhooks:write": "Create, update, delete webhook subscriptions",
"site:read": "View site details, brand voices, elements, categories",
"content_intelligence:read": "List and view content intelligence recommendations, dismiss recommendations",
"content_intelligence:write": "Act on recommendations and bulk-dismiss"
}
}
}
Returns the full list of scopes that can be assigned to API keys as a key-value map.
{
"data": {
"scopes": {
"ideaclouds:read": "List and view IdeaClouds and questions",
"ideaclouds:write": "Create IdeaClouds",
"content:read": "List and view content, components, HTML",
"content:write": "Create content, trigger generation",
"compliance:write": "Trigger compliance checks",
"content_tools:write": "Generate schemas, meta, social snippets",
"inventory:read": "List and view inventory, descriptions, feeds",
"inventory:write": "Trigger inventory description generation",
"webhooks:read": "View webhook subscriptions and deliveries",
"webhooks:write": "Create, update, delete webhook subscriptions",
"site:read": "View site details, brand voices, elements, categories",
"content_intelligence:read": "List and view content intelligence recommendations, dismiss recommendations",
"content_intelligence:write": "Act on recommendations and bulk-dismiss"
}
}
}
Last modified on March 15, 2026
⌘I
