Console provides a visual interface for creating and configuring agents. It produces the same /v1/agents and /v1/sessions resources as the API but lets you iterate on configuration interactively before writing code.
All Managed Agents API requests require the managed-agents-2026-04-01 beta header. The SDK sets the beta header automatically.
The visual interface walks you through each field of an agent definition:
As you configure, Console shows the equivalent API request so you can copy it into your code once you're satisfied.
Console includes an inline session runner. After configuring your agent, you can start a test session directly, send messages, and watch the event stream without leaving the page. This is the fastest way to check that your system prompt and tool selection produce the behavior you expect.
Once your agent works as expected:
session=$(curl -fsSL https://api.anthropic.com/v1/sessions \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "anthropic-beta: managed-agents-2026-04-01" \
-H "content-type: application/json" \
-d '{
"agent": "agent_01XXXXXXXXXXXXXXXXXXXXXX",
"environment_id": "env_01XXXXXXXXXXXXXXXXXXXXXX",
"title": "My first session"
}')Was this page helpful?