← KI / AI API
AIAgentReviews
Singular: AIAgentReview — Base-URL: https://ai.ayoune.app — Zugriff: CRUD
Jetzt ausprobieren
beta
Response (live)
Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.
Beispiel-Response (aufgezeichnet) Beispiel
Eine echte, zuvor aufgezeichnete GET /:id-Antwort dieses Endpunkts — nicht der Live-Call oben. Sensible Felder sind maskiert.
{
"payload": {
"_id": "6a618a6226743b2cbc7b7c59",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-07-23T03:28:34.829Z",
"updatedAt": "2026-07-23T03:28:34.829Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://ai.ayoune.app/aiagentreviews/6a618a6226743b2cbc7b7c59",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "AIAgents",
"title": "MODEL_AIAGENT",
"href": "https://api.ayoune.app/ai/aiagents",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "ai.aiagents"
},
{
"rel": "AIAgents",
"title": "MODEL_AIAGENT",
"href": "https://api.ayoune.app/ai/aiagents",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "ai.aiagents"
}
],
"debugId": "6a62dc1912a17f2ff7e74733",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_AIAGENTREVIEW",
"href": "https://api.ayoune.app/ai/aiagentreviews/6a618a6226743b2cbc7b7c59/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_AIAGENTREVIEW",
"href": "https://api.ayoune.app/ai/aiagentreviews/6a618a6226743b2cbc7b7c59/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.131.3",
"core": "2026.258.0"
},
"rateLimit": {
"limit": "10000",
"remaining": "9819",
"reset": "1784867355",
"resetDate": "Fri Jul 24 2026"
},
"responseTime": 81.014677,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /aiagentreviews |
Liste mit Filtern/Paginierung | ai.aiagentreviews.view |
| GET | /aiagentreviews/:id |
Einzelner Datensatz | ai.aiagentreviews.view |
| POST | /aiagentreviews |
Neuen Datensatz erstellen | ai.aiagentreviews.new |
| PUT | /aiagentreviews |
Datensatz aktualisieren | ai.aiagentreviews.edit |
| DELETE | /aiagentreviews/:id |
Datensatz löschen | ai.aiagentreviews.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.ai.aIAgentReviews.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.ai.aIAgentReviews.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.ai.aIAgentReviews.create({ name: 'Foo' });