Skip to main content
AgentOS exposes endpoints for running agents and managing sessions, memories, knowledge, and evals. The same API powers the control plane and can be used to build your AI products.

Endpoints

ResourceOperations
AgentsRun, list, get
TeamsRun, list, get
WorkflowsRun, list, get
SessionsCreate, list, get, update, delete
MemoriesCreate, list, get, update, delete
KnowledgeAdd, search, list, get, delete
EvalsCreate, list, get, update, delete
MetricsGet, refresh
See the API reference for full documentation.

Running Agents

Teams and workflows follow the same pattern:
  • POST /teams/{team_id}/runs
  • POST /workflows/{workflow_id}/runs

Authentication

If authentication is enabled, include a JWT token:
See Security & Authorization to configure authentication.

Passing Dependencies

Pass runtime parameters like dependencies, session_state, or metadata as form fields:

Output Schema

Pass a JSON schema to structure the response:

Cancelling Runs