The Agents API lets you discover what agents are registered on your Agent Manager instance. You can list every agent — including team agents — or look up a specific agent by its identifier. Agent definitions include theDocumentation Index
Fetch the complete documentation index at: https://operativusai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
is_team flag that distinguishes single agents from multi-agent teams.
All requests require a valid bearer token in the Authorization header.
List all agents
When
true, the response includes agents that have been marked inactive. Defaults to false, returning only active agents.is_team field to filter teams from single agents.
An array of
AgentDefinition objects.Get a specific agent
404 Not Found when no agent with the given ID exists.
The unique identifier of the agent to retrieve.
Unique string identifier for the agent.
Human-readable display name.
Short description of the agent’s purpose and capabilities.
true if this agent is a multi-agent team.| Status | Description |
|---|---|
404 Not Found | No agent exists with the specified agentId. |
The
agentId value you receive here is used as the path parameter in all execution endpoints — POST /api/agents/{agentId}/runs, /runs/stream, and /runs/background.