Skip to main content

Plans & Usage

All plans include full access to the web app, REST API, MCP, and all AI model tiers. Plans differ only by operation volume.

Pricing tiers

PlanPriceIncluded operationsOverage
Free$0/mo500/moPauses at limit (429 error)
Plus$20/mo2,000/moPay-as-you-go up to 4,000 total. Max bill $50/mo.
Pro$99/mo10,000/moPay-as-you-go, no cap
EnterpriseCustomCustomCustom

What counts as an operation

AI actions that modify, analyze, or search documents count as operations:
  • Editing a document section
  • Creating new content
  • Deleting content
  • Searching the document
  • Searching attachments
  • Analyzing document context
  • Loading a template
Not counted: Opening the editor, typing, formatting text, viewing sessions, basic conversations without document actions.

Check your usage

In the app

Click your avatar to see your usage bar, operations count, and remaining operations.

In API responses

Every chat response includes a usage object:
{
  "usage": {
    "monthly_used": 42,
    "monthly_limit": 500,
    "monthly_remaining": 458,
    "was_billable": true,
    "subscription_tier": "free"
  }
}

Via API

# Get usage stats
curl https://api.superdocs.app/v1/users/me/usage \
  -H "Authorization: Bearer sk_YOUR_API_KEY"

# Get tier limits
curl https://api.superdocs.app/v1/users/me/limits \
  -H "Authorization: Bearer sk_YOUR_API_KEY"

Monthly reset

Operations reset at the start of each billing cycle. Free plans reset monthly from account creation.