Skip to main content

Billing

Plans

FeatureFreeStarterProEnterprise
Price$0/mo$29/mo$99/moCustom
Requests/month1,00010,000100,000Custom
Models1050100+All
ReceiptsYesYesYesYes
On-chain anchoringNoYesYesYes
Agent orchestrationNoNoYesYes
MCPGate tools1050UnlimitedUnlimited
Team members1525Unlimited
SLA99.5%99.9%99.99%
SupportCommunityEmailPriorityDedicated

Usage-Based Pricing

Beyond plan limits, usage is metered per-request:
MetricRate
Additional requests$0.001/request
Input tokensPass-through from provider
Output tokensPass-through from provider
On-chain anchoring$0.01/epoch
MCPGate tool calls$0.002/call
Token costs are the upstream provider rate (OpenAI, Anthropic, etc.) plus a small routing fee.

Manage Billing

Billing is managed through Stripe via the Dashboard → Settings → Billing. From the billing page you can:
  • View current plan and usage
  • Upgrade or downgrade plans
  • Update payment method
  • Download invoices
  • Set spending alerts

Invoices

Invoices are generated monthly and available in the dashboard. They include:
  • Plan subscription fee
  • Usage-based charges (broken down by metric)
  • Any credits or adjustments

BYOK (Bring Your Own Key)

On the Pro and Enterprise plans, you can use your own provider API keys. In BYOK mode, Lucid doesn’t charge for token costs — only the routing and infrastructure fees apply.
// Configure BYOK in the dashboard or via API
await lucid.settings.update({
  byokKeys: {
    openai: "sk-...",
    anthropic: "sk-ant-...",
  },
});