← KI / AI API
AIPlugins
Singular: AIPlugin — Base-URL: https://ai.ayoune.app — Zugriff: CRUD — Maschinenlesbare Beschreibung (JSON · YAML)
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": {
"manifest": {
"tools": [],
"hooks": [],
"commands": []
},
"lifecycle": {
"initCommands": [],
"shutdownCommands": []
},
"_id": "6a8a6b21216dcd463ba82426",
"name": "FOND_GREEN_JEK TONO PORKINS",
"status": "inactive",
"initOnStartup": false,
"global": false,
"isTemplate": false,
"isDraft": true,
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-08-23T03:38:09.164Z",
"updatedAt": "2026-08-23T03:38:09.164Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://ai.ayoune.app/aiplugins/6a8a6b21216dcd463ba82426",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a8a6b21860e841d7c8afa77",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_AIPLUGIN",
"href": "https://api.ayoune.app/ai/aiplugins/6a8a6b21216dcd463ba82426/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_AIPLUGIN",
"href": "https://api.ayoune.app/ai/aiplugins/6a8a6b21216dcd463ba82426/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.162.0",
"core": "2026.315.1"
},
"rateLimit": {
"limit": "10000",
"remaining": "9719",
"reset": "1787459872",
"resetDate": "Sun Aug 23 2026"
},
"responseTime": 17.43505,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /aiplugins |
Liste mit Filtern/Paginierung | ai.aiplugins.view |
| GET | /aiplugins/:id |
Einzelner Datensatz | ai.aiplugins.view |
| POST | /aiplugins |
Neuen Datensatz erstellen | ai.aiplugins.new |
| PUT | /aiplugins |
Datensatz aktualisieren | ai.aiplugins.edit |
| DELETE | /aiplugins/:id |
Datensatz löschen | ai.aiplugins.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.ai.aIPlugins.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.ai.aIPlugins.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.ai.aIPlugins.create({ name: 'Foo' });