Tokens, never metered.Pay for parallel streams.
An OpenAI- and Anthropic-compatible inference API with no token meter. Send as much as you like — your plan sets how many generations run at once.
- No token meter
- OpenAI & Anthropic SDKs
- Built for agents
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.nevermetered.com/v1",
api_key=os.environ["NEVERMETERED_API_KEY"],
)
stream = client.chat.completions.create(
model="MODEL_ID",
messages=[{"role": "user",
"content": "Why streams?"}],
stream=True,
)
for chunk in stream:
delta = chunk.choices[0].delta
print(delta.content or "", end="")Parallel streams let your agents run side by side instead of in single file. Each generation uses one of your plan's slots, and repeated prompt prefixes can be served from cache.
Works with your tools
Built for agents, pipelines and products that stream all day
Per-token pricing punishes the workloads that matter most. We sell capacity instead — predictable, dedicated, and fast.
No token meter
No per-token pricing and no monthly token quota. Send long contexts and long answers — your plan price never moves.
Dedicated parallel streams
You pick how many generations run at once, and give each key its own cap — a runaway job can't use more than its share of your streams.
Fair scheduling
When the pool is busy, requests queue fairly: users with lighter recent usage go first, and waiting requests gain priority over time.
OpenAI + Anthropic compatible
Chat Completions, Responses and Messages on one base URL. Point the official SDKs at it and keep your code.
Prefix caching, sticky sessions
Conversations stick to the same engine for a while, so repeated prompt prefixes can be served from cache instead of recomputed.
Full visibility
Every request logged with input, cached input and output tokens, latency and GPU time. Export anything to CSV.
Live in three steps
If your code already talks to OpenAI or Anthropic, switching is a base URL and a key.
- 1
Create a key
Sign up and generate an API key in seconds. Optionally cap how many streams each key may use.
- 2
Point your SDK
Swap the base URL in your OpenAI or Anthropic client. Your prompts, tools and streaming code stay the same.
- 3
Scale with streams
Run as many generations as your plan allows, in parallel. Need more? Upgrade — tokens stay unlimited.
Pay for parallelism, not tokens
Every plan includes unlimited input and output tokens. Choose how many streams you need at once.
Create a free account now — every account starts with a free daily allowance and unlimited tokens per request.
Questions, answered
What does “never metered” actually mean?
Is there a free tier?
What happens when I use all my parallel streams?
Which APIs are supported?
How do cached input tokens work?
Can I see exactly what I used?
Can I limit what each API key can do?
Do you store or train on my prompts?
Stop counting tokens. Start shipping.
An OpenAI- and Anthropic-compatible inference API with no token meter. Send as much as you like — your plan sets how many generations run at once.