Predictable monthly spend. OpenAI-compatible API. Powered by OpenRouter.
Pay a flat monthly rate. Get a fixed token budget. No surprise bills.
Pick a monthly tier that fits your budget. Each tier gives you a fixed token allocation.
Secure checkout with credit card, Apple Pay, or Google Pay. Cancel anytime.
Receive an mt_... API key. Use it with any OpenAI-compatible client.
Call /v1/chat/completions — we proxy to OpenRouter and track your usage in real time.
import openai
client = openai.OpenAI(
base_url="https://metered.pages.dev/v1",
api_key="mt_your_api_key_here"
)
response = client.chat.completions.create(
model="glm-5.2",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)