aYOUne
← KI / AI API

AIAgentCalibrationLogs

Singular: AIAgentCalibrationLog — Base-URL: https://ai.ayoune.app — Zugriff: read-only

play_circle Jetzt ausprobieren beta

Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.

Endpunkte

MethodePathBeschreibungRight
GET /aiagentcalibrationlogs Liste mit Filtern/Paginierung ai.aiagentcalibrationlogs.view
GET /aiagentcalibrationlogs/:id Einzelner Datensatz via ID ai.aiagentcalibrationlogs.view

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// Alle abrufen
const list = await ay.ai.aIAgentCalibrationLogs.find().limit(10).exec();

// Einzelnen Datensatz
const one = await ay.ai.aIAgentCalibrationLogs.findById('OBJECT_ID').exec();

Weiterführend