Get AI agent catalog REST API
GET
/api/ai-agents
const url = 'http://127.0.0.1:25737/api/ai-agents';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://127.0.0.1:25737/api/ai-agents \ --cookie hk_token=<hk_token>Returns the embedded AI agent master list as display metadata including agent names, operator families, categories, and favicon-lookup hosts derived from each agent’s documentation URL, plus the known AI referrer surfaces. The catalog is static per release.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”AI agent catalog
Media typeapplication/json
object
agents
Array<object>
object
category
string
family
string
icon_host
string
name
string
ai_referrers
Array<object>
object
icon_host
string
name
string
generated_at
string format: date-time
Example
{ "agents": [ { "category": "ai_training_crawler" } ]}