news

OpenAI Agents API: The Managed Codex Harness 2026

September 11, 2026

OpenAI Agents API: The Managed Codex Harness 2026

The OpenAI Agents API is a managed service, launched in public beta on September 10, 2026, that runs the Codex agent harness on OpenAI's infrastructure. You supply tools and pick an execution environment; OpenAI handles sessions, orchestration, context compaction, and recovery.

TL;DR

OpenAI opened the Agents API in public beta on September 10, 2026.1 It rents you the same harness that runs Codex, behind one POST to /v1/agents/sessions.2

There is no separate fee for the Agents API — you pay model tokens, tool rates, and container rates for OpenAI-hosted sandboxes.12

The catch is in the docs, not the announcement. The Agents API "currently supports data residency only in the United States and does not support Zero Data Retention (ZDR)," and picking a self-hosted sandbox does not change that.2

That matters because GPT-6 Astra, the model in OpenAI's own code samples, does support Zero Data Retention for eligible API customers.3 The harness is what costs you the compliance posture, not the model.

And OpenAI is not first here. AWS shipped Bedrock AgentCore to general availability on October 13, 2025.4 Anthropic shipped Claude Managed Agents into public beta on April 8, 2026 — five months and two days before OpenAI.5

What You'll Learn

  • What the OpenAI Agents API actually is, and what "managed Codex harness" means in practice
  • How the Agents API differs from the Agents SDK and the Responses API
  • Which sandbox you can run agents in — OpenAI-hosted, your own, or none
  • What the Agents API costs, and which line items the "no additional fees" line does not cover
  • Why the managed harness forfeits Zero Data Retention when the underlying model does not
  • Who actually shipped a managed agent runtime first
  • What OpenAI itself said about managed agent APIs five months ago
  • How to read the customer numbers in the announcement
  • What the agents=v1 beta header implies about longevity

What the OpenAI Agents API actually is

The Agents API gives your application access to the Codex harness through an OpenAI-managed API. OpenAI manages sessions, orchestration, context compaction, and recovery, while your application provides tools and chooses its execution environment.2

A harness, in OpenAI's own architecture documentation, is "the OpenAI-hosted Codex instance that runs the model and tool loop and maintains the agent's session."6

That is the whole product in one sentence. The loop that decides when to call a model, when to call a tool, when to summarize, and when to give up — that loop now runs on someone else's machines.

You create a session with client.beta.agents.sessions.create(), or with a raw POST to https://api.openai.com/v1/agents/sessions carrying the header OpenAI-Beta: agents=v1.2

The docs list official examples in JavaScript, Python, Go, Java, Ruby, and curl.2

The API is organized around four concepts: Agent (model, instructions, tools, MCP servers), Environment (an optional sandbox), Session (a durable agent instance), and Events and items (inputs and outputs).2

Hold that list. It comes back later.

Agents API vs Agents SDK vs Responses API

OpenAI now ships three agent runtimes, and its own documentation compares them directly.7

Agents APIAgents SDKResponses API
Where the agent runsOpenAI runs a managed Codex harnessThe SDK runs inside your applicationYour application, with optional hosted orchestration
Integration effortLowMediumHigh
State between tasksSaved session configuration, turns, and itemsYour storage and SDK sessions, or Responses conversation stateManual history, response chaining, or Conversations
Execution environmentOpenAI hosted sandbox, self-hosted sandbox, or no sandboxYour runtime and sandbox provider integrationsYour own execution environment

Source: OpenAI's "Compare agent runtime options" table.7

The distinction that the naming actively obscures: the Agents SDK is a library you run, and the Agents API is a service OpenAI runs. They are not versions of each other.

OpenAI's framing is that the SDK "gives your application control over deployment, storage, approvals, and runtime integration," while the API "runs the Codex harness and manages the underlying agent infrastructure so you can focus on what your agents do."7

Choosing between them is a control-versus-effort trade, and OpenAI labels it as such — "Low" versus "Medium" integration effort, in its own table.7

What the managed Codex harness gives you

OpenAI lists seven capabilities the managed harness supports: running commands and code in a sandbox, applying skills and instructions, connecting to external data through tools or MCP, steering the agent mid-task, summarizing previous work to manage the context window, delegating subtasks to subagents, and resuming a session where it left off.2

Three of those are the ones people build badly by hand.

Context compaction. The Agents API "automatically compacts earlier context as a session approaches its context limit," so developers can build workflows spanning multiple context windows without writing their own compaction logic.1

Tool search. Rather than shipping every tool definition on every turn, tool search "loads relevant tool definitions as needed," which OpenAI says reduces token usage and cost while preserving the model's cache.1

Subagents. Set multi_agent.enabled and max_concurrent_subagents, and the harness splits complex tasks into independent pieces. Each subagent keeps its own context; the main agent coordinates and merges results.1

Anthropic's equivalent shipped earlier and ships with published limits. Claude Managed Agents uses a coordinator with a declared roster, capped at 20 unique agents and 25 concurrent threads, and a coordinator may delegate only one level deep — referencing an agent that has its own roster fails validation.8

OpenAI has published no equivalent ceilings for max_concurrent_subagents in the launch materials reviewed here. That is a documentation gap worth watching if you plan to fan out wide.

OpenAI hosted sandbox, self-hosted, or none

The environment.type field takes three values, and the choice is more consequential than it looks.6

Set it to none and the harness runs without compute. Good for agents that answer questions or call remote MCP tools — but the built-in Bash and apply-patch tools, workspace files, and executor MCPs are all unavailable.6

Set it to openai_hosted and OpenAI provisions and manages a sandbox for the session, using the same sandboxing infrastructure behind Codex and ChatGPT.16

Set it to self_hosted and your code starts the environment and connects an executor to the session. You own provisioning, reconnection, shutdown, and file preservation.6

OpenAI's architecture doc is refreshingly plain about what an environment can be: "a remote sandbox, your laptop, a Docker container, or an AWS Lambda function."6

For hosted options, OpenAI named nine sandbox partners: Blaxel, Cloudflare, Daytona, DigitalOcean, E2B, Modal, Oracle, Runloop, and Vercel.1

That list grew. When OpenAI added native sandbox execution to the Agents SDK in April 2026, it named seven: Blaxel, Cloudflare, Daytona, E2B, Modal, Runloop, and Vercel.9 DigitalOcean and Oracle are the September additions.

OpenAI Agents API pricing: no fee, but not free

There is no separate charge for the Agents API itself. OpenAI's wording: "There are no additional fees for using the Agents API – you simply pay for the tokens and tools your agents use."1

The docs are more specific. Model usage bills at the selected model's API rates, OpenAI tools bill at their standard rates, and OpenAI-hosted sandboxes bill at standard container rates.2

So three meters, not one.

For the model in OpenAI's own samples, gpt-6-astra, standard short-context pricing is $10.00 per million input tokens and $50.00 per million output tokens. Long context is $20.00 and $75.00. Cached input is $1.00; cache writes are $12.50.10

Container rates are listed at 1 GB $0.03, 4 GB $0.12, 16 GB $0.48, and 64 GB $1.92 per 20-minute session per container — with a separate note that eligible container sessions are billed by the minute with a five-minute minimum.10 Both statements appear on the same page; treat the effective rate as something to measure rather than model.

Built-in web search is $10.00 per 1,000 calls plus search content tokens at model rates.10

One more line worth budgeting for: regional processing endpoints carry a 10% uplift for models released on or after March 5, 2026.10 Which raises a question the Agents API answers in a way the announcement never mentions.

The Zero Data Retention catch in the fine print

At the bottom of the Agents API overview, after the code samples, is the sentence that should decide whether regulated teams adopt this at all:

The Agents API currently supports data residency only in the United States and does not support Zero Data Retention (ZDR). Choosing a self-hosted sandbox does not make the Agents API ZDR-eligible.2

Read the second sentence twice. Running the compute yourself does not buy back the compliance posture, because the thing retaining state is the harness, not the sandbox.

The Agents API retains session state so work continues across turns without rebuilding context.2 That persistence is the product. It is also what forecloses ZDR.

The contrast is sharp. GPT-6 Astra — the model in OpenAI's Agents API code samples — "supports Zero Data Retention for eligible API customers," per OpenAI's own launch page.3

So a workload that runs under Zero Data Retention on the model today loses that eligibility the moment it moves to the Agents API. The model did not change. The runtime did.

Anthropic landed in exactly the same place, and said so more explicitly. Its docs state that because Managed Agents is stateful by design, "Managed Agents is not currently eligible for Zero Data Retention (ZDR) or HIPAA Business Associate Agreement (BAA) coverage."11

Two independent labs, five months apart, hit the same wall. That suggests the constraint is architectural rather than a policy choice either could reverse on request.

OpenAI is not first to a managed agent harness

It would be easy to read a launch this size as OpenAI opening a category. The dates do not support that.

AWS put Amazon Bedrock AgentCore into preview in July 2025 and reached general availability on October 13, 2025.4 AgentCore is framework-agnostic by design — AWS advertises it as working with CrewAI, LangGraph, LlamaIndex, Google ADK, and, pointedly, the OpenAI Agents SDK.4

Anthropic announced Claude Managed Agents on April 8, 2026, describing it as a "pre-built, configurable agent harness that runs in managed infrastructure."511

Now go back to those four Agents API primitives — Agent, Environment, Session, Events. Anthropic's docs list Claude Managed Agents as "built around four concepts": Agent, Environment, Session, Events.11

The same four nouns, in the same order, at two labs, five months apart. That is convergence on a shared abstraction, not evidence that anyone copied anyone.

Where they genuinely differ is billing. Anthropic charges standard token rates plus $0.08 per session-hour, metered to the millisecond and only while a session's status is running — idle, rescheduling, and terminated time do not accrue.12 OpenAI charges no session fee and bills the sandbox as a container instead.210

Anthropic also explicitly excludes the Batch API discount from Managed Agents sessions, on the grounds that sessions are stateful and interactive.12

The other real difference is the harness itself. AWS lets you bring any framework; OpenAI and Anthropic each run their own opinionated one. OpenAI says it provides "versioned access to these capabilities with each model launch," so the harness upgrades alongside the models rather than on your release schedule.1

What OpenAI said about managed agent APIs five months ago

On April 15, 2026 — one week after Anthropic's launch — OpenAI published "The next evolution of the Agents SDK." It surveyed the landscape and drew a three-way distinction:

Model-agnostic frameworks are flexible but do not fully utilize frontier models capabilities ; model-provider SDKs can be closer to the model but often lack enough visibility into the harness; and managed agent APIs can simplify deployment but constrain where agents run and how they access sensitive data.9

That third clause was a criticism of a product category OpenAI has now entered.

And it was accurate. The Agents API constrains where agents run — US-only data residency — and how they access sensitive data — no ZDR.2 OpenAI described the trade-off before making it.

To be fair, OpenAI narrowed the gap it identified. The Agents API lets you keep compute inside your own perimeter via self_hosted, and the harness is open source, which answers the "lack enough visibility" complaint aimed at provider SDKs.16

The Codex harness lives at github.com/openai/codex under Apache-2.0, written mostly in Rust, and carried 119,631 stars and 18,270 forks as of September 11, 2026.13

One caveat on that. OpenAI says the Agents API is "powered by the open-source Codex harness" and that developers "can inspect and learn from its public codebase."1 That is a visibility claim, not a guarantee that the hosted harness is byte-identical to the repository at any given moment.

The customer numbers are vendor-reported

OpenAI's announcement carries eight customer testimonials.1 Four are excerpted below, and not one of their figures is independently verified.

CompanySourceReported result
CiridaeJack Weissenberger, CTOEvaluation score rose from 0.71 to 0.85; subagent support gave "a 4x latency reduction"
HyphaSerhii Shchoholiev, Lead Engineer"By separating the agent harness from the sandbox, we reduced failed agent responses by 86%"
SafetyKitBhavyansh Sabharwal, Member of Technical Staff"60% reduction in cost per case" after migrating a case review workflow
Nash.aiAziz Alghunaim, Co-founder & CTO"Thousands of long-running AI agents" managing "hundreds of millions of deliveries"

Every figure here is an OpenAI-published customer statement, quoted from the announcement page.1 None comes with a methodology, a baseline definition, or a reproducible harness.

The Hypha number is the most interesting and the most opaque. An 86% reduction in failed responses, attributed specifically to separating the harness from the sandbox, is a strong architectural claim — and "failed agent responses" is not a defined term anywhere in OpenAI's documentation.

As of September 11, 2026, one day after launch, no independent evaluation of the Agents API had been published. Treat the announcement's numbers as directionally interesting and structurally unaudited.

That pattern is not new. Our look at DeepSeek Harness and its open agent loop found the same gap between a harness vendor's published numbers and anything a third party could reproduce.

The agents=v1 beta header question

Every Agents API request carries OpenAI-Beta: agents=v1.2 Developers who have been on the platform a while will recognize that pattern, and not fondly.

OpenAI-Beta: realtime=v1 was the Realtime API Beta. OpenAI announced its deprecation on September 15, 2025 and removed it on May 12, 2026.14

The broader record is worth having in front of you before you build a business on a beta surface. OpenAI's deprecations page documents three product retirements announced on a single day, June 3, 2026: Agent Builder, the Evals platform, and reusable prompts — all scheduled to shut down on November 30, 2026.14 The Assistants API shut down on August 26, 2026, a year after its notice.14

None of this predicts anything about the Agents API. OpenAI's stated notice periods are real — at least six months for generally available models, at least three for specialized variants.14

But those commitments are written about models. OpenAI's deprecations page does not publish an equivalent notice guarantee for beta API surfaces, and the Realtime beta's roughly eight-month window from announcement to removal is the closest precedent available.14

The practical hedge is the same one that applies to every agent platform: keep tools behind MCP, keep business logic out of vendor-specific session objects, and know what a migration would cost before you need to price it. We made the same argument about enterprise MCP servers as the agent action layer, and it holds here.

Who this is actually for

If you are prototyping, the Agents API removes weeks of infrastructure. Context compaction, tool search, subagent orchestration, durable sessions, and sandbox lifecycle are all real work you no longer do.12

If you are in a regulated industry, the US-only residency and ZDR exclusion are likely disqualifying, and no sandbox choice fixes them.2 The Agents SDK remains the path that keeps state under your control.7

If you are multi-model by policy, neither managed harness is built for you. Anthropic says Managed Agents is "purpose-built for Claude," and OpenAI's Agents API documentation shows only OpenAI models.25 AWS AgentCore's framework-and-model-agnostic posture is the structural answer there.4

And if you already went through a forced agent migration this year, you know the calculus. AWS gave Bedrock Agents customers a deadline and a destination — the shape of that transition is covered in our piece on AWS closing Bedrock Agents.

The bottom line

The interesting thing about the Agents API is not that OpenAI built a managed agent runtime. AWS and Anthropic got there first, and the abstraction has converged so tightly that OpenAI and Anthropic now describe it with the same four nouns.

The interesting thing is what the managed layer costs you. Not in dollars — the token and container meters are ordinary. In posture.

GPT-6 Astra supports Zero Data Retention.3 The Agents API does not, and self-hosting the sandbox does not restore it.2 Anthropic's managed harness lands on the identical exclusion for the identical reason.11 Statefulness is the feature and statefulness is the disqualifier, and you cannot buy one without the other.

OpenAI wrote that trade-off down in April, as a criticism of somebody else's product category.9 Five months later it shipped into that category, and the constraint it named is right there in the documentation.

That is not hypocrisy. It is a fairly precise piece of self-knowledge that happens to also be the best available buyer's guide. Read the April paragraph, then read the limitations note at the bottom of the overview page, then decide whether your data can live in a US-only stateful session.

For everyone else — and that is most teams — a managed harness that handles compaction, tool search, and subagents on day one is a genuinely good deal at no marginal fee. Just don't wire it in so deep that agents=v1 becomes load-bearing.

References

Footnotes

  1. Introducing the Agents API — OpenAI, September 10, 2026. Primary source for the public beta launch date and availability "to all developers"; the subhead "Build and run cloud agents with the Codex harness, fully managed by OpenAI"; the claim that the Agents API brings "that same harness and infrastructure that powers Codex to developers"; the three compute options (OpenAI-managed sandbox, own infrastructure, or a sandbox partner); the nine named sandbox partners (Blaxel, Cloudflare, Daytona, DigitalOcean, E2B, Modal, Oracle, Runloop, Vercel); the introduction of the OpenAI hosted sandbox and its use of "the same sandboxing infrastructure that powers Codex and ChatGPT"; automatic context compaction; tool search loading "relevant tool definitions as needed"; programmatic tool calling; the statement that "The Agents API provides versioned access to these capabilities with each model launch"; multi-agent support with multi_agent.enabled and max_concurrent_subagents; the gpt-6-astra model identifier in the code samples; the "An open-source foundation" section stating the API is "powered by the open-source Codex harness" and that developers "can inspect and learn from its public codebase"; the pricing line "There are no additional fees for using the Agents API – you simply pay for the tokens and tools your agents use"; and all eight customer testimonials, including the four quoted in this post (Ciridae/Jack Weissenberger, Hypha/Serhii Shchoholiev, SafetyKit/Bhavyansh Sabharwal, Nash.ai/Aziz Alghunaim). The carousel on that page is labelled "1 of 8"; all customer figures in this post are OpenAI-published customer statements and are not independently verified. 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

  2. Agents API overview — OpenAI API documentation, accessed September 11, 2026 (Markdown version retrieved by appending .md to the URL, per the docs site's own instruction). Source for "The Agents API gives your application access to the Codex harness through an OpenAI-managed API"; the division of responsibility ("OpenAI manages sessions, orchestration, context compaction, and recovery while your application provides tools and chooses its execution environment"); the page's meta description "Build durable cloud agents with a managed Codex harness"; the three-meter pricing breakdown (model at API rates, OpenAI tools at standard rates, OpenAI-hosted sandboxes at standard container rates); the four core concepts (Agent, Environment, Session, Events and items); the seven managed-harness capabilities; the POST https://api.openai.com/v1/agents/sessions endpoint and the OpenAI-Beta: agents=v1 header; the six documented client examples (JavaScript, Python, Go, Java, Ruby, and curl); the statement that the Agents API "retains session state so you can continue work across turns without rebuilding the conversation context"; and the verbatim limitation quoted in this post: "The Agents API currently supports data residency only in the United States and does not support Zero Data Retention (ZDR). Choosing a self-hosted sandbox does not make the Agents API ZDR-eligible." 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

  3. GPT-6 Astra: A new generation of intelligence — OpenAI, September 3, 2026. Source for the availability language ("rolling out today to a limited set of organizations and over the coming days will become available to all ChatGPT Plus, Pro, Business, and Enterprise users, as well as through the OpenAI API, Microsoft Azure, and AWS Bedrock"), the API model identifier gpt-6-astra, the Standard pricing of $10 per million input tokens and $50 per million output tokens, Fast mode at up to 2x speed for 2x price, and the sentence central to this post's argument: "Astra supports Zero Data Retention for eligible API customers." A second, business-facing post, "GPT-6 Astra: The next generation in intelligence for work," is dated September 9, 2026. 2 3

  4. Amazon Bedrock AgentCore is now generally available — AWS What's New, October 13, 2025. Source for the general availability date; the preview date of July 2025 (per the preview announcement); the framework-agnostic positioning ("any open source framework (CrewAI, LangGraph, LlamaIndex, Google ADK, OpenAI Agents SDK) and any model in or outside Amazon Bedrock"); and the GA feature set including VPC, AWS PrivateLink, AWS CloudFormation, and resource tagging across nine AWS Regions. AgentCore runtime instances subsequently reached general availability on August 6, 2026. No AgentCore pricing figure is stated in this post because none was verified against an AWS primary source. 2 3 4 5

  5. Claude Managed Agents: get to production 10x faster — Anthropic, April 8, 2026, filed under Product announcements. Source for the April 8, 2026 public beta launch date; the description of Managed Agents as "a suite of composable APIs for building and deploying cloud-hosted agents at scale" that "pairs an Anthropic-managed harness with production infrastructure for state, memory, permissions, and scheduled execution"; the line "Managed Agents is purpose-built for Claude"; and the pricing summary "Standard Claude Platform token rates apply, plus $0.08 per session-hour for active runtime." Note that this April page lists multi-agent coordination as a research preview requiring an access request; by September 11, 2026 multiagent orchestration is documented as a standard Managed Agents capability behind the ordinary beta header (see 8), and the April labelling is not used in this post as a current status. 2 3 4

  6. Agents API architecture — OpenAI API documentation, accessed September 11, 2026. Source for the definition of the harness as "the OpenAI-hosted Codex instance that runs the model and tool loop and maintains the agent's session"; the definition of an environment as somewhere that can be "a remote sandbox, your laptop, a Docker container, or an AWS Lambda function"; the three environment.type values (none, openai_hosted, self_hosted); the statement that without an environment "the built-in Bash and apply-patch tools, workspace files, and executor MCPs are unavailable"; the self-hosted responsibilities ("You own provisioning, reconnection, shutdown, and any files you need to preserve"); and the streaming-or-webhooks progress options. 2 3 4 5 6 7 8

  7. Agents — Compare agent runtime options — OpenAI API documentation, accessed September 11, 2026. Source for the three-runtime comparison table reproduced in this post (Agents API / Agents SDK / Responses API across "Use for", "Where the agent runs", "Agent integration effort", "State between tasks", "Tool execution", and "Execution environment"), including the Low/Medium/High integration-effort ratings; and for the two summary sentences quoted here — that the Agents API "runs the Codex harness and manages the underlying agent infrastructure so you can focus on what your agents do," and that the Agents SDK "gives your application control over deployment, storage, approvals, and runtime integration." 2 3 4 5 6

  8. Multiagent orchestration — Claude Platform Docs, accessed September 11, 2026. Source for the coordinator-and-roster model ("All agents share the same sandbox, filesystem, and vault credentials, but each agent runs in its own session thread"); the roster forms (agent by ID, pinned version, self, and advisor); the one-level delegation restriction ("The coordinator can only delegate to one level of agents; referencing an agent that has its own multiagent.agents roster fails the create or update request with a validation error"); the cap of "A maximum of 20 unique agents … in multiagent.agents"; and the cap of "A maximum of 25 concurrent threads", with advisor consultation threads exempt. This page carries no research-preview notice and states only the ordinary managed-agents-2026-04-01 beta header requirement, which is why this post does not repeat the April 2026 blog's research-preview labelling as a current status. As of the same date the Managed Agents overview lists MCP tunnels and dreaming — not multiagent orchestration — as the features in "a more limited research preview."11 2

  9. The next evolution of the Agents SDK — OpenAI, April 15, 2026. Source for the three-way landscape quote reproduced in this post ("Model-agnostic frameworks are flexible but do not fully utilize frontier models capabilities ; model-provider SDKs can be closer to the model but often lack enough visibility into the harness; and managed agent APIs can simplify deployment but constrain where agents run and how they access sensitive data" — spacing as published); the openai-agents>=0.14.0 Python package requirement in the code sample; the seven sandbox providers named in April (Blaxel, Cloudflare, Daytona, E2B, Modal, Runloop, Vercel), against which the September list of nine is compared; the Manifest abstraction and its storage integrations; the statement that "Separating harness and compute helps keep credentials out of environments where model-generated code executes"; and the pricing note that the new SDK capabilities "use standard API pricing, based on tokens and tool use." Note this post was published one week after Anthropic's April 8, 2026 Claude Managed Agents launch; this post reports that sequence without asserting that the two are related. 2 3

  10. OpenAI API pricing — OpenAI, accessed September 11, 2026. Source for gpt-6-astra Standard pricing (short context: $10.00 input, $1.00 cached input, $12.50 cache writes, $50.00 output per 1M tokens; long context: $20.00 input, $75.00 output); the Containers row under Tools ("Hosted Shell and Code Interpreter — 1 GB $0.03, 4 GB $0.12, 16 GB $0.48, 64 GB $1.92 per 20-minute session per container"); the accompanying note that "Eligible container sessions will be billed by the minute, with a 5-minute minimum per session" and that GB means gibibytes; web search at "$10.00 / 1k calls + Search content tokens billed at model rates"; and the note that "Regional processing (data residency) endpoints are charged a 10% uplift for models released on or after March 5, 2026." The 20-minute-session rate and the per-minute-with-5-minute-minimum note both appear on this page; this post quotes both rather than reconciling them, and makes no total-cost estimate. 2 3 4 5

  11. Claude Managed Agents overview — Claude Platform Docs, accessed September 11, 2026. Source for the page description "Pre-built, configurable agent harness that runs in managed infrastructure"; the four core concepts (Agent, Environment, Session, Events) used in this post's convergence comparison; the environment choice between "an Anthropic-managed cloud sandbox, or a self-hosted sandbox on your own infrastructure"; the managed-agents-2026-04-01 beta header requirement on all Managed Agents endpoints; the built-in tool list (Bash, file operations, web search and fetch, MCP servers); the note that multiagent features including dreaming and MCP tunnels sit in "a more limited research preview"; and the verbatim limitation quoted in this post: "Because of this, Managed Agents is not currently eligible for Zero Data Retention (ZDR) or HIPAA Business Associate Agreement (BAA) coverage." 2 3 4 5

  12. Claude Platform pricing — Claude Managed Agents pricing — Claude Platform Docs, accessed September 11, 2026. Source for the session runtime SKU at "$0.08 per session-hour" metered on "running status duration"; the note that "Runtime is measured to the millisecond and accrues only while the session's status is running" and that idle, rescheduling, and terminated time do not count; the statement that session runtime replaces code-execution container-hour billing; and the table of Messages API modifiers that do not apply to Managed Agents, including the Batch API discount ("Sessions are stateful and interactive. There is no batch mode"). A third-party guide (Tygart Media) circulates a $0.25 per session-hour figure; Anthropic's own pricing documentation says $0.08, and the primary source is used here. 2 3

  13. openai/codex repository metadata — GitHub REST API, retrieved September 11, 2026. Source for 119,631 stargazers, 18,270 forks, the Apache-2.0 license, Rust as the primary language, the repository description "Lightweight coding agent that runs in your terminal", the creation date of April 13, 2025, and a last push of August 29, 2026. Star and fork counts are point-in-time values as of retrieval. Secondary write-ups circulate a 75.6K star figure from mid-April 2026; the live API value is used here instead. 2

  14. Deprecations — OpenAI API documentation, accessed September 11, 2026. Source for the Realtime API Beta entry (OpenAI-Beta: realtime=v1, announced 2025-09-15, shut down May 12, 2026); the June 3, 2026 announcements for Agent Builder, the Evals platform, and reusable prompts, all with a November 30, 2026 shutdown date, and the note that ChatKit remains available; the Assistants API shutdown on August 26, 2026 following its August 2025 notice; and the stated minimum notice periods ("Generally available models: At least 6 months", "Specialized variants of generally available models: At least 3 months", "Preview models … may be retired with much shorter notice, such as 2 weeks"). Those notice periods are written about models; this post states explicitly that the page publishes no equivalent guarantee for beta API surfaces, which is an observation about what the page does not contain rather than a claim about OpenAI's intentions for the Agents API. 2 3 4 5

Frequently Asked Questions

A managed service, in public beta since September 10, 2026, that runs the Codex agent harness on OpenAI's infrastructure. OpenAI manages sessions, orchestration, context compaction, and recovery; you provide tools and choose the execution environment. 1 2