Skip to main content

Billing & Usage

Every ZID gets a generous free tier. Usage is metered per-computation and per-AI-chat-message, resetting daily at midnight UTC.

Free Tier

On registration, every ZID receives:

ResourceDaily LimitCost
Computations10 / dayFree
AI Chat Messages10 / dayFree
API Keys3 activeFree
Equation VaultUnlimitedFree

Usage Tracking

Check your current usage at any time via the Account API or the Account Dashboard.

curl https://www.zeq.dev/api/account/usage \
  -H "Authorization: Bearer YOUR_API_KEY"

Response:

{
  "computations": { "used": 7, "limit": 10, "period": "day" },
  "chat": { "used": 3, "limit": 10, "period": "day" },
  "resetsAt": "2026-04-21T00:00:00Z"
}

API Key Management

Create up to 3 API keys from the Account Dashboard or via the Account API. Keys can be revoked instantly.

Overages

When you hit your daily limit, the API returns 429 Too Many Requests with a Retry-After header indicating when your quota resets. No charges are incurred — the free tier simply pauses until the next UTC day.

Related

Account API · Rate Limits · Auth API