aYOUne
← Automation API

BrowserRemoteSessions

Singular: BrowserRemoteSession — Base-URL: https://automation-api.ayoune.app — Zugriff: read-onlyMaschinenlesbare Beschreibung (JSON · YAML)

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.

Beispiel-Response (aufgezeichnet) Beispiel

Eine echte, zuvor aufgezeichnete GET /:id-Antwort dieses Endpunkts — nicht der Live-Call oben. Sensible Felder sind maskiert.

{
  "payload": {
    "_id": "6a618b8c6eefbeb876f1604c",
    "_user": "6045f4d25704710012485569",
    "status": "pending",
    "isDraft": true,
    "createdAt": "2026-07-23T03:33:32.130Z",
    "updatedAt": "2026-07-23T03:33:32.130Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://automation-api.ayoune.app/browserremotesessions/6a618b8c6eefbeb876f1604c",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "BrowserAutomations",
        "title": "MODEL_BROWSERAUTOMATION",
        "href": "https://api.ayoune.app/automation/browserautomations",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "automation.browserautomations"
      },
      {
        "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": "ComputingEntities",
        "title": "MODEL_COMPUTINGENTITY",
        "href": "https://api.ayoune.app/config/computingentities",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "config.computingentities"
      }
    ],
    "debugId": "6a8e5ff1c4f84869c29d4275",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_BROWSERREMOTESESSION",
        "href": "https://api.ayoune.app/automation/browserremotesessions/6a618b8c6eefbeb876f1604c/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_BROWSERREMOTESESSION",
        "href": "https://api.ayoune.app/automation/browserremotesessions/6a618b8c6eefbeb876f1604c",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.22.0",
      "core": "2026.319.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2255",
      "reset": "1787719109",
      "resetDate": "Wed Aug 26 2026"
    },
    "responseTime": 406.789333,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

MethodePathBeschreibungRight
GET /browserremotesessions Liste mit Filtern/Paginierung automation.browserremotesessions.view
GET /browserremotesessions/:id Einzelner Datensatz via ID automation.browserremotesessions.view

SDK

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

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

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

Weiterführend