Claude Platform Docs
AdminMonitoring

Analytics APIs

Understand which analytics API and API key your organization needs, then provision access to Claude Code productivity metrics or Claude Enterprise engagement and adoption data.

Anthropic provides two analytics APIs, and which one you use depends on which Claude product your organization manages:

  • The Claude Code Analytics API reports daily Claude Code productivity metrics for organizations that use the Claude Platform. It is part of the Admin API and uses an Admin API key.
  • The Claude Enterprise Analytics API reports organization-wide engagement, adoption, and cost data across Claude products (chat, projects, Claude Code, and more) for Claude Enterprise organizations. It uses an Analytics API key created in claude.ai.

The two APIs use different key types, created in different places by different roles. This page describes which API fits your organization and how to create the right key.

Which API do you need?

APIKey typeCreated inWho can create itWhat it covers
Claude Code Analytics APIAdmin API key (sk-ant-admin01-...)Claude Console > Settings > Admin keysOrganization adminDaily Claude Code metrics per user: sessions, lines of code, commits, pull requests, tool acceptance, and estimated cost by model
Claude Enterprise Analytics APIAnalytics API keyclaude.ai > Organization settings > APIPrimary ownerOrganization-wide engagement and adoption (user activity, active-user summaries, project, skill, and connector usage), plus cost and usage reports

The key types are not interchangeable: an Admin API key cannot call the Claude Enterprise Analytics API, and an Analytics API key cannot call the Admin API. Both APIs appear under the Admin API reference, but they are separate APIs with separate key types. If your organization uses both the Claude Platform and Claude Enterprise, you can provision both keys and use each API for its own data.

Get access to the Claude Code Analytics API

The Claude Code Analytics API is available to every organization with access to the Admin API, and is free to use.

  1. Create an Admin API key

    Follow the steps in Create an Admin API key.

  2. Call the API

    Pass the key in the x-api-key header:

    curl "https://api.anthropic.com/v1/organizations/usage_report/claude_code?starting_at=2025-09-08" \
      --header "anthropic-version: 2023-06-01" \
      --header "x-api-key: $ANTHROPIC_ADMIN_KEY"

For the available metrics, request parameters, and response schema, see the Claude Code Analytics API guide and the API reference.

Get access to the Claude Enterprise Analytics API

The Claude Enterprise Analytics API is available to Claude Enterprise organizations. Engagement and adoption data is available on all Enterprise plans. The cost and usage endpoints apply to usage-based Enterprise plans; for seat-based Enterprise plans, they reflect usage credits only.

  1. Sign in as the primary owner

    Only the primary owner of the organization can enable API access and create Analytics API keys.

  2. Enable API access and create a key

    Go to claude.ai > Organization settings > API and enable public API access, then create an Analytics API key. Keys carry the read:analytics scope. Copy the displayed secret and store it in your secrets manager.

  3. Call the API

    Pass the key in the x-api-key header and include the anthropic-version header on every request. Endpoints live under https://api.anthropic.com/v1/organizations/analytics/. For request examples, parameters, and response schemas, see the Claude Enterprise Analytics API reference.

The Claude Enterprise Analytics API provides:

  • User activity: per-user daily metrics across chat (conversations, messages, projects, files, artifacts), Claude Code (sessions, commits, pull requests, lines of code, tool actions), and other Claude products
  • Activity summaries: organization-level daily, weekly, and monthly active users, seat counts, and pending invites
  • Project, skill, and connector usage: adoption breakdowns for chat projects, skills, and connectors
  • Cost and usage reports: per-user and organization-level token usage and cost over time (usage-based Enterprise plans)

For endpoint details, parameters, and response schemas, see the Claude Enterprise Analytics API reference. The following sections cover data freshness, metric definitions, and operational guidance that apply across those endpoints.

Data availability and freshness

Claude Enterprise Analytics API data is available for dates on or after January 1, 2026.

Engagement and adoption endpoints (user activity, summaries, projects, skills, connectors) return a per-day snapshot for the date you specify. Data for a given day is typically available from about 17:00 UTC the following day (a 1-day lag); until then, the most recent available day is usually two days before the current UTC date. Data occasionally arrives later, and exact freshness varies by query, so rather than assuming a fixed time, check the error response: requesting a date that is not yet available returns a 400 error naming the most recent available day. If data is not available well past the typical lag, it usually indicates a data pipeline failure on Anthropic's side; contact support if the gap persists.

Cost and usage endpoints follow a different freshness model. Data is typically available within four hours of the underlying usage but may take up to 24 hours. Values for a given date can be revised for up to 30 days as late events arrive and reconciliation runs. For invoicing-grade totals, query dates at least 30 days in the past.

How metrics are defined

Active users. A user counts as active for a day if any of the following is true: they sent at least one chat message in Claude, they had at least one Claude Code session (local or remote) associated with your Claude Enterprise organization that included tool use or git activity, or they had at least one Cowork session with tool use or message activity.

Per-product metric blocks. Per-product metric objects (for example, Office Agent or Cowork metrics on a user-activity record) are always present on every record. Organizations without usage of that product see all-zero values rather than null.

Connector names. Connector names are normalized across sources. For example, Atlassian MCP server, mcp-atlassian, and atlassian_MCP all appear as atlassian in the connector usage endpoint.

Working with the API

Pagination cursors are bound to the query that issued them. On the cost and usage endpoints, do not change query parameters mid-sequence: if you change products[], group_by[], order_by, the date range, or any filter and pass an old cursor, the request returns a 400 error. To change parameters, restart from the first page without a cursor.

List parameters use bracket notation. Repeat the parameter for each value, for example products[]=chat&products[]=claude_code.

Amount fields are decimal strings in cents. Currency amounts are returned as decimal strings such as "41280.000000" (which represents $412.80). To convert to dollars, parse as a decimal and divide by 100. Avoid binary floating-point parsing for values that may exceed several million dollars.

Rate limits apply at the organization level, not per key, with a default of 60 requests per minute across all endpoints in this API. If that is not sufficient for your use case, contact your Anthropic account team to discuss adjusting the limit.

Versioning

Send the anthropic-version header on every request; see API versions for the available versions.

Known limitations

If your organization uses Claude Code through Amazon Bedrock, the Claude Enterprise Analytics API does not return Claude Code activity for that usage.

Next steps

Track Claude Code sessions, code changes, and tool usage with an Admin API key.

Track API token usage and costs for your organization.

Endpoint reference for engagement, adoption, and cost data.

Audit and compliance data uses its own key types.

Was this page helpful?