Skip to main content
GET
/
ideaclouds
List IdeaClouds
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/ideaclouds \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "keyword": "<string>",
      "title": "<string>",
      "synopsis": "<string>",
      "status": "researching",
      "category": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>",
    "total_count": 123
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Query Parameters

limit
integer
default:25

Number of results per page

Required range: 1 <= x <= 100
cursor
string

Base64-encoded pagination cursor

status
string

Filter by status (e.g. researching, complete, failed)

keyword
string

Case-insensitive partial match on keyword

Response

Paginated list of IdeaClouds

data
object[]
pagination
object
Last modified on February 28, 2026