Usage data is now queryable in the Alchemy CLI
Author: Lisa Ma

Usage data is now queryable in the Alchemy CLI. You can pull your team's compute and cost data, both totals and a breakdown over time, straight from the terminal. The same data is available to AI agents through the Alchemy MCP Server, so an agent can see what your team is consuming without a custom integration.
Until now, checking usage meant logging into the Dashboard and reading the charts manually. There was no first-class programmatic way to get at the numbers. Now there is.
What you can do
Two commands cover most of what you'll reach for.
alchemy usage summarygives you month-to-date, last 7 days, or last 30 days totals, in both compute units and USD.alchemy usage timeseriesgives you the same numbers plotted over time, so you can see when traffic and spend moved.
Both render as a readable chart in your terminal. Add --json and you get structured output instead, ready to pipe into a script, a dashboard, or an alert.
alchemy usage summary
alchemy usage timeseriesFor machine-readable output:
alchemy usage summary --json
alchemy usage timeseries --jsonSlice it the way the Dashboard does
You can group usage by network, app, method, or request type, and filter on any of them, so you can answer questions like which app is driving compute or which method spiked overnight. Pick hourly or daily granularity with --granularity. This is full parity with the Dashboard's usage view, which stays the visual source of truth.
A few examples:
alchemy usage summary --metrics amount,usd
alchemy usage timeseries --group-by network --granularity day
alchemy usage summary --app-ids <id> --methods eth_getLogsGive your agents usage awareness
The same usage data is exposed through the Alchemy MCP Server as two tools: get_usage_summary and get_usage_time_series. Point an agent at your MCP server and it can reason about consumption and cost as part of its context, so an agent monitoring your infrastructure also knows what that infrastructure is costing.
If you already connected the MCP server to Cursor, Claude Code, or Codex — see the MCP setup guide or our MCP announcement — these tools show up alongside the rest of the Alchemy surface. Pair them with Agent Skills if you want your agent to know how to call Alchemy APIs in code; MCP is what gives it live usage data in the conversation.
Who this is for
If you're building agents or you just want programmatic, scriptable visibility into what your team consumes, this is for you. Monitor spend while you develop. Wire usage into an agent's context. Build your own cost dashboard or a budget alert. Track down which network, app, or method is responsible for a jump in compute. All of it now lives where you already work.
Getting started
Make sure you're on Node 22 or later, then install or update the CLI:
npm install -g @alchemy/cliThen run alchemy usage summary and you're looking at your numbers. See the usage docs for flags and filters, or our 12 things you can do faster with the Alchemy CLI walkthrough for the full command surface.
Usage in the CLI and the MCP server is one more step toward a platform that agents and developers can both operate directly. Update the CLI, run a command, and tell us what you'd want to see next.
Alchemy Newsletter
Be the first to know about releases
Suscríbete a nuestro boletín
Recibe las últimas actualizaciones de productos y recursos de Alchemy
Al ingresar tu correo electrónico, aceptas recibir nuestras comunicaciones de marketing y actualizaciones de productos. Reconoces que Alchemy procesa la información que recibimos de acuerdo con nuestro Aviso de Privacidad. Puedes cancelar tu suscripción en cualquier momento.
Related articles

What Solana builders ship on Alchemy
See how Solflare, Phantom, Collector Crypt, and other Solana teams build wallets, trading platforms, and real-world assets on Alchemy's Solana RPC and gRPC infrastructure.

Turn Claude Code into an onchain research agent
Turn Claude Code into an onchain research agent with the Alchemy CLI. Trace token launches, deployer wallets, and admin keys by asking the right questions.

Introducing Admin APIs
Apps Management and Usage are generally available. Create apps, manage allowlists, and pull dashboard usage from one endpoint with one Access Key.