Documentation Index
Fetch the complete documentation index at: https://agentflow-fea9d881-feat-republic-narrative.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Публичный эндпойнт. Удобно для чат-ботов и виджетов открытия.
Запрос
GET /search?q=vpn&type=all&limit=20
| Параметр | Обязателен | Дефолт | Заметки |
|---|
q | да | — | 1..120 символов, метасимволы экранируются |
type | нет | all | agent, token, all |
limit | нет | 20 | 1..50 |
Ответ
{
"ok": true,
"items": [
{ "kind": "agent", "slug": "vpn-bot", "name": "VPN Bot", "ticker": "VPNB" },
{ "kind": "token", "slug": "vpnt", "name": "VPN Token", "ticker": "VPNT" }
]
}
SDK
const r = await af.search.query("vpn", { type: "agent", limit: 5 });
for (const hit of r.items) {
console.log(hit.kind, hit.slug, hit.name);
}
Curl
curl "https://api.agentflow.website/search?q=vpn"
Авторизация не нужна.