anoman
Guide

Plans & billing

Four plans, one billing unit. How pricing, weighted tokens, annual billing, and IDR payment fit together.

The plans

Four tiers

Every tier bundles a platform fee with access to a set of model tiers and a monthly weighted-token allowance. Pick the plan that matches how many models you need and how much you run through them.

TierPriceModelsWeighted tokens / moRPM / TPM / inflight
Starter$12/moBudget only500K30 / 60K / 5
Pro$39/moBudget + Mid + Premium20M120 / 500K / 25
Pay-As-You-Go$9/mo + raw costAll model tiersNo fixed quota60 / 200K / 10
Enterprise$499+/moAll model tiersCustom30K / 100M / 100

The last column is RPM / TPM / inflight — per-minute request and token burst guards plus the max concurrent requests per key.
Live prices, IDR amounts, annual rates, and any active promo are always on /pricing. Do not hardcode prices from this page.

Weighted tokens

How the billing unit works

Flat-tier plans meter usage in weighted tokens, not raw tokens. A weighted token normalizes for how expensive a model is to run, so a small budget model consumes far fewer of your allowance than a flagship one for the same text.

weighted_tokens = raw_tokens × provider_multiplier × tier_multiplier × quota_discount

Provider multiplier

  • cloud_direct = 1.0
  • bedrock = 0.5
  • self_hosted = 0.5
  • local_id = 0.3

Model-tier multiplier

  • budget = 1
  • mid = 4
  • premium = 17
  • ultra = 42

Quota discount (% charged)

  • cache_hit = 0%
  • provider_cache = 10%
  • batch = 50%
  • realtime = 100%

Token counts always come from the provider's response usage — never a local estimate. Cache hits are free, provider prompt cache is discounted 10%, and batch routing is charged at 50%.

Annual billing

Pay yearly, reset monthly

Starter and Pro can be billed annually as one payment per year. The weighted-token allowance still resets by calendar month — annual only changes the payment cadence, not the quota window.

  • Monthly → annual upgrade is immediate and prorated.
  • Annual → monthly downgrade is scheduled for the end of the current period.
  • PAYG and Enterprise keep their own billing arrangements.

IDR payment

IDR-native payment via DOKU

Indonesian accounts are charged in Indonesian Rupiah through DOKU — virtual account, QRIS, e-wallet, and card all work. The USD ledger stays authoritative under the hood; the IDR amount you pay is derived from an ops-maintained FX rate.

Displayed in your currency. Dashboard balances and invoices for Indonesia-region accounts render in IDR while the backend continues to compute and store in USD.

Check your usage

Where to see spend

The dashboard Usage page shows weighted tokens used vs. allowance and your reset date. Programmatically, call the subscription quota endpoint with your API key.

curl https://api.anoman.io/anoman/v1/subscription/quota \
  -H "Authorization: Bearer anm-sk-..."

Enterprise and PAYG return a limit of 0, which means no fixed monthly cap.

See live prices

Current tier prices, IDR amounts, and any active promo are always on the pricing page.