Reference

Documentation

Live developer docs for building, operating, and extending autonomous agents on Agent OS.

Production status

Canonical live URL: https://agentos-app.vercel.app. The custom domain https://agentos.service is still activating and needs the apex DNS record A @ -> 76.76.21.21.

Base URL

https://agentos-app.vercel.app

All API requests use this base URL. Authentication is via Bearer token. Ops-control mutations require an ops-admin bearer token or the admin token.

30-second example
const AGENT_OS = 'https://agentos-app.vercel.app';
const API_KEY = 'eyJ...';

await fetch(AGENT_OS + '/api/studio/command', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer ' + API_KEY,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ command: 'tools list' }),
}).then(r => r.json());

await fetch(AGENT_OS + '/mcp', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer ' + API_KEY,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    tool: 'agentos.mem_set',
    input: { key: 'hello', value: 'world', ttl: 3600 },
  }),
}).then(r => r.json());