Metered billing

100,000 signed writes free. After that, top up in USDC on Base or Ethereum and keep going. Signed usage receipts, no invoices, no seat contracts, no minimum term.

How it works

Free tier
100,000
signed writes
Grace window
+5,000
writes with warning
Default price
$0.01
per signed write
Chains at launch
Base + Ethereum
Solana next

Volume ladder

Tier applies automatically based on rolling monthly write count. No commitment, no contract, no reset penalty.

Monthly volume Per-write Monthly cost at tier floor Monthly cost at tier ceiling
0 – 100,000Free$0$0
100,000 – 1M$0.010$1,000$10,000
1M – 5M$0.005$5,000$25,000
5M – 50M$0.002$10,000$100,000
50M+customContact [email protected]

One write = one canonical, Ed25519-signed, replay-safe receipt of an agentic action. Priced per receipt, not per API call, not per transfer, not per dollar moved.

Sign in to your meter

Enter the activation key you use in the X-Hive-Activation-Key header. Your meter binds automatically the first time you use the key on any signed-write endpoint.

Try it from the command line

If you already have an activation key, you can bind and inspect your meter without ever opening this page:

# Bind your key to a metered account (idempotent)
curl -s -X POST https://receipts.thehiveryiq.com/v1/billing/activate \
  -H "X-Hive-Activation-Key: $HIVE_KEY" \
  -H "Content-Type: application/json" \
  -d '{"label":"prod"}'
# Look up your account_id at any time
curl -s https://receipts.thehiveryiq.com/v1/billing/whoami \
  -H "X-Hive-Activation-Key: $HIVE_KEY"
# Fetch a signed usage snapshot (round-trips /v1/receipt/verify)
curl -s https://receipts.thehiveryiq.com/v1/billing/usage/$ACCOUNT_ID \
  -H "X-Hive-Activation-Key: $HIVE_KEY"
# Request a USDC top-up intent
curl -s -X POST https://receipts.thehiveryiq.com/v1/billing/topup/intent \
  -H "X-Hive-Activation-Key: $HIVE_KEY" \
  -H "Content-Type: application/json" \
  -d '{"account_id":"'$ACCOUNT_ID'","chain":"base","amount_cents":1000}'

What Hive does not do

All usage responses are Ed25519-signed by the Hive prov signer and round-trip /v1/receipt/verify. Public key at /v1/prov/pubkey. Meter schema at /v1/billing/meter/health. Questions: [email protected].