aYOUne
← Automation API

BrowserRemoteSessions

Singular: BrowserRemoteSession — Base URL: https://automation-api.ayoune.app — Access: read-onlyMachine-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": "6a93a1a5fbfc0ff28b0b2826",
    "_user": "6045f4d25704710012485569",
    "status": "pending",
    "isDraft": true,
    "createdAt": "2026-08-30T03:21:09.791Z",
    "updatedAt": "2026-08-30T03:21:09.791Z",
    "shares": []
  },
  "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": "6aa372bafb6b2a5c42f44580",
    "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.328.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2229",
      "reset": "1789099916",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 20.931859,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /browserremotesessions List with filters/pagination automation.browserremotesessions.view
GET /browserremotesessions/:id Single record by ID automation.browserremotesessions.view

SDK

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

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

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

See also