
Manage Your Claude Organization Without curl: Admin API Ships to Seven SDKs
Chris Harper
1 min read
Aug 26, 2026 · 20:03 UTC
TL;DR: Anthropic's Admin API now ships in seven language SDKs and the ant CLI under client.beta.organization — org members, workspaces, API keys, and rate limits are no longer curl-only.
Released August 26, the Admin API is now available in the Python, TypeScript, C#, Go, Java, PHP, and Ruby SDKs, plus the ant CLI, under client.beta.organization. Coverage: org info, members, invites, workspaces and workspace members, API keys, rate limits, service accounts, workload identity federation issuers and rules, and customer-managed encryption keys.
from anthropic import Anthropic
client = Anthropic() # uses ANTHROPIC_API_KEY (Admin API key) or
# ANTHROPIC_AUTH_TOKEN (org:admin OAuth token)
members = client.beta.organization.members.list()
Why it matters: Teams automating Claude Enterprise provisioning — rotating API keys, managing workspace membership, applying rate-limit policies — no longer need raw curl scripts. GitOps pipelines and internal tooling can use typed SDK clients instead.
Limit: Usage and cost reports, and Claude Enterprise user-management analytics endpoints, remain curl-only for now.
Sources: Claude Platform release notes, August 26 — Anthropic · Admin API docs — platform.claude.com