aYOUne
← AI API

AIAgentReviews

Singular: AIAgentReview — Base URL: https://ai.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

play_circle Try it now beta

Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.

Example response (recorded) sample

A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.

{
  "payload": {
    "_id": "6aa37161cce8865a139ec3d3",
    "createdBy": "6045f4d25704710012485569",
    "shares": [],
    "createdAt": "2026-09-11T03:11:29.450Z",
    "updatedAt": "2026-09-11T03:11:29.450Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://ai.ayoune.app/aiagentreviews/6aa37161cce8865a139ec3d3",
        "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": "6aa37161f0c743377030d787",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_AIAGENTREVIEW",
        "href": "https://api.ayoune.app/ai/aiagentreviews/6aa37161cce8865a139ec3d3/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_AIAGENTREVIEW",
        "href": "https://api.ayoune.app/ai/aiagentreviews/6aa37161cce8865a139ec3d3",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.173.2",
      "core": "2026.335.0"
    },
    "rateLimit": {
      "limit": "10000",
      "remaining": "9858",
      "reset": "1789099878",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 35.029238,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /aiagentreviews List with filters/pagination ai.aiagentreviews.view
GET /aiagentreviews/:id Single record ai.aiagentreviews.view
POST /aiagentreviews Create new record ai.aiagentreviews.new
PUT /aiagentreviews Update record ai.aiagentreviews.edit
DELETE /aiagentreviews/:id Delete record ai.aiagentreviews.delete

SDK

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

// List all
const list = await ay.ai.aIAgentReviews.find().limit(10).exec();

// Single record
const one = await ay.ai.aIAgentReviews.findById('OBJECT_ID').exec();

// Create
const created = await ay.ai.aIAgentReviews.create({ name: 'Foo' });

See also