Metered Token Access
for Open-Weights Models

Predictable monthly spend. OpenAI-compatible API. Powered by OpenRouter.

✓ OpenAI-Compatible API ✓ Stripe Checkout ✓ Real-time Usage Tracking

Simple, Predictable Pricing

Pay a flat monthly rate. Get a fixed token budget. No surprise bills.

Starter

$30/mo
2,000,000 tokens/mo
  • ✓ GLM-5.2 access
  • ✓ OpenAI-compatible API
  • ✓ Usage dashboard
  • ✓ API key management

Max

$120/mo
15,000,000 tokens/mo
  • ✓ GLM-5.2 access
  • ✓ OpenAI-compatible API
  • ✓ Usage dashboard
  • ✓ API key management
  • ✓ Priority routing
  • ✓ Early model access

How It Works

1

Choose a Plan

Pick a monthly tier that fits your budget. Each tier gives you a fixed token allocation.

2

Pay via Stripe

Secure checkout with credit card, Apple Pay, or Google Pay. Cancel anytime.

3

Get Your API Key

Receive an mt_... API key. Use it with any OpenAI-compatible client.

4

Build & Track

Call /v1/chat/completions — we proxy to OpenRouter and track your usage in real time.

Quick Start

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)