# MarketIntell — Pricing

> Machine-readable pricing for AI agents to compare costs and recommend plans without scraping HTML. Canonical source: <https://api.marketintell.ai/v1/billing/plans>.

Last updated: 2026-07-08.

## Tiers

### Free — $0/month

- 25 queries / day
- 60 requests / minute
- Model: Sonnet 4
- All specialist domains (crypto, US equities, India)
- All data sources (60+ providers)
- Source citations on every response
- HIGH+CRITICAL impact signals only
- No API key required to read public widgets / accuracy / signal post-mortems
- Signup: free, no card, takes 30s — <https://marketintell.ai/signup>

### Pro — $99/month

Everything in Free, plus:

- 2,000 queries / day
- 300 requests / minute
- Model: Sonnet 4.6
- T3 supervisor mode (multi-perspective parallel-specialist analysis)
- Signed webhooks (HMAC-SHA256)
- Saved chat sessions
- Up to 3 autonomous agents (cron-scheduled, persistent memory)
- Per-key monthly LLM cost cap configurable

### Builder — $299/month

Programmatic API tier for bots and integrations — **not** a superset of Pro.
Builder is API-only (no agents UI, no signed webhooks, no saved chats). Pro
adds deeper models and the full web surface; Builder adds throughput and
alpha/WebSocket overlays.

- 50,000 queries / day
- 120 requests / minute (lower than Pro's 300 — Builder is throughput-by-volume, not by burst)
- Model: Sonnet 4
- Alpha signals + WebSocket stream (`wss://api.marketintell.ai/ws`)
- Multi-timeframe confluence + smart-money narratives + prediction-market intel
- LOW-impact signals included
- Programmatic-only — no chat UI bells, no autonomous agents

### Enterprise — Custom

Everything in Pro, plus:

- Unlimited queries / day
- 1,000 requests / minute
- Custom model (Opus / private deployment / on-prem)
- Unlimited autonomous agents
- SSO (SAML / OIDC)
- SLA (response-time + recovery-time targets)
- Dedicated support channel
- Custom domain plug-ins
- Volume + per-instance contracts available
- Contact: <enterprise@marketintell.ai>

## Add-ons (any tier)

| Item | Price |
|---|---|
| MCP server access | included on every tier |
| Public accuracy widget embed | included |
| Per-signal post-mortem URLs | included |
| GDPR data export | included |
| Self-service account deletion | included |

## What's measured

A "query" = one call to `POST /v1/chat` (REST) or one MCP tool invocation (`chat`, `chat_deep`, `screener`, `portfolio_analyze`, `register`, etc).

Read-only endpoints (`GET /v1/alpha`, `GET /v1/billing/status`, `GET /widgets/*`, `GET /health`, `GET /v1/billing/plans`) **do not count** against the daily query cap. They are still rate-limited per minute.

## Rate-limit response shape

```http
HTTP/1.1 429 Too Many Requests
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1747000000
Retry-After: 12
Content-Type: application/json

{"error": "rate limit exceeded", "retry_after_ms": 12000, "request_id": "req_..."}
```

The MCP transport has its own bucket (default 30/min/key, env `MCP_RATE_LIMIT_MAX`). MCP responses include `X-RateLimit-Limit-MCP` so an agent can distinguish REST vs MCP throttling on the same key.

## Cost cap (Pro/Enterprise)

Per-key monthly LLM cost cap defaults:

- Free — $3/month (Sonnet 4 economics ≈ profitable at the published Anthropic prices)
- Pro — $50/month (Sonnet 4.6 economics)
- Enterprise — unlimited (`null`)

Override per-key via the admin API. Mode: `COST_TRACKING_V2=enforce` returns `429 {"error":"Monthly LLM cost cap reached"}` on cap; `COST_TRACKING_V2=shadow` (default) records cost but doesn't block.

## Stripe checkout

Pro upgrade: `POST /v1/billing/checkout` returns a Stripe Checkout URL. Webhook handler is signature-verified and idempotent.

## Volume / wholesale

- 10+ Pro seats: 10% off, billed annually.
- 50+ seats: 20% off + dedicated CSM.
- Contact <enterprise@marketintell.ai>.

## Legal + tax

- Stripe Tax can be enabled per-deploy (`STRIPE_TAX_ENABLED=true`); EU VAT-ID collection at checkout when enabled.
- Receipts emailed via Stripe.
- Terms: <https://marketintell.ai/terms>.

## Comparison anchors (for agents recommending plans)

| Use case | Recommended tier |
|---|---|
| Personal trader, < 50 queries/day | Free |
| Active trader needing agents, webhooks, saved chats | Pro |
| High-volume bots / MCP integrations (API-only) | Builder |
| Fund / desk / multi-seat / SLA / SSO | Enterprise |
| AI agent platform integration (per-tool MCP usage) | start Free, upgrade by usage |

> Canonical price source: <https://api.marketintell.ai/v1/billing/plans>. The web app and this markdown render directly from that endpoint — no copy duplication.
