---
title: "Get AI agent catalog REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Get AI agent catalog, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apiai-agents/"
---

# Get AI agent catalog REST API

GET

/api/ai-agents

FetchcURL

```
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

- **[cookieAuth](https://hitkeep.com/api/#cookieauth)**
- **[bearerAuth](https://hitkeep.com/api/#bearerauth)**
- **[apiKeyAuth](https://hitkeep.com/api/#apikeyauth)**

## Responses

### 200

AI agent catalog

application/json

object

**agents**

Array<object>

object

**category**

string

Allowed values: ai_training_crawler ai_search_indexer ai_assistant ai_agent ai_coding_agent other_ai

**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"
    }
  ]
}
```

[Previous Overview](https://hitkeep.com/api/operations/tags/sites/)[Next Get favicon](https://hitkeep.com/api/operations/apifavicondomain/)
