← Automation API
BrowserRemoteSessions
Singular: BrowserRemoteSession — Base-URL: https://automation-api.ayoune.app — Zugriff: read-only — 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": {
"_id": "6a93a1a5fbfc0ff28b0b2826",
"_user": "6045f4d25704710012485569",
"status": "pending",
"isDraft": true,
"createdAt": "2026-08-30T03:21:09.791Z",
"updatedAt": "2026-08-30T03:21:09.791Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://automation-api.ayoune.app/browserremotesessions/6a93a1a5fbfc0ff28b0b2826",
"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": "6a94face1498dfeb5b346568",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_BROWSERREMOTESESSION",
"href": "https://api.ayoune.app/automation/browserremotesessions/6a93a1a5fbfc0ff28b0b2826/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_BROWSERREMOTESESSION",
"href": "https://api.ayoune.app/automation/browserremotesessions/6a93a1a5fbfc0ff28b0b2826",
"method": "delete",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.23.0",
"core": "2026.323.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2221",
"reset": "1788151363",
"resetDate": "Mon Aug 31 2026"
},
"responseTime": 177.919367,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| 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();