# Cohesivity — Pricing Cohesivity has three subscription tiers plus a 72-hour ephemeral exploration window. Every claimed tier comes with a monthly **fluid** balance (USD credits) the account can spend on Gemini and Exa per-call usage, plus a **bucket** of monthly limits across infra services (database, redis, object storage, vector storage, hosting, realtime, social login, email, weather, geocoding, YouTube). When a bucket metric runs out, the next request automatically buys a small overuse block from fluid. When fluid is also exhausted, that offering pauses for the rest of the month or until you top up. See your live billing state any time with: `GET https://cohesivity.ai/api/status` (returns `account.billing`, `bucket_usage`, recent `notifications`). --- ## Ephemeral (free, no signup) Anyone can hit `POST https://cohesivity.ai/api/genesis` and get a tenant for 72 hours, no account required. Tight per-request limits make it suitable for scaffolding and one-shot agents, not for serving real users. - 1 project, 72-hour claim window - 5,000 Vercel edge requests, 0.5 GB fast data transfer - 30 emails, 250 D1 rows write, 100k Redis commands - Gemini Flash-Lite at 5/min, no Gemini Live, no video models - Exa core retrieval (`/search`, `/contents`, `/findSimilar`, `/answer`, `/context`) at 5/min A breach of any of these caps pauses the whole tenant for the remaining 72-hour window. Hosted tenants redirect to `claim_url`; infra-only tenants return structured paused errors. Claim before expiry to keep the tenant. --- ## Claimed Free — $0 / month After claiming the tenant on `https://cohesivity.ai/claim/` with Google sign-in plus the management key, the account becomes Free. - 10 projects (tenants) per account - **$5 / month** Gemini + Exa fluid grant (use it or lose it monthly) - 100K Vercel edge requests, 20 GB fast data transfer, 60 deploys - 10M D1 rows read, 1M rows written, 2 GB live storage - 500K Redis commands, 500 MB live storage - 10K object-storage uploads, 50 GB upload, 10 GB live, 50 GB public reads - 1M vector-db read units, 500K write units, 1 GB live storage - 100 emails, 200 recipients - 5K social-login auth events, 5K stored users - 5K realtime token mints, 500K published messages, 25K history reads, 50 concurrent sockets - Gemini Flash-Lite, Flash, Pro text/image/audio (no Veo); Gemini Live ×1 concurrent - Exa adds deep search and `/research` --- ## Plus — $20 / month - 30 projects per account - **$20 / month** Gemini + Exa fluid grant (your full subscription comes back as fluid credit) - 1M edge requests, 200 GB fast data transfer, 200 deploys - 100M D1 rows read, 10M rows written, 20 GB live storage - 5M Redis commands, 5 GB live storage - 100K object-storage uploads, 500 GB upload, 100 GB live, 500 GB public reads - 10M vector-db read units, 5M write units, 10 GB live storage - 1,000 emails, 2,000 recipients - 50K social-login auth events, 50K stored users - 50K realtime token mints, 5M published messages, 250K history reads, 500 concurrent sockets - Gemini full catalog including Veo video; Gemini Live ×5 concurrent - Exa unlocks `/websets` and `/monitors` --- ## Pro — $100 / month - 100 projects per account - **$100 / month** Gemini + Exa fluid grant - 5M edge requests, 1 TB fast data transfer, 600 deploys - 500M D1 rows read, 50M rows written, 100 GB live storage - 25M Redis commands, 25 GB live storage - 500K object-storage uploads, 2.5 TB upload, 500 GB live, 2.5 TB public reads - 50M vector-db read units, 25M write units, 50 GB live storage - 5,000 emails, 10,000 recipients - 250K social-login auth events, 250K stored users - 250K realtime token mints, 25M published messages, 1.25M history reads, 2,500 concurrent sockets - Same provider feature surface as Plus, 3-20× higher quantity caps --- ## How fluid works Fluid is a single USD wallet shared across every tenant in your account. Two things spend it: 1. Gemini and Exa per-call costs (priced per request, no monthly bucket) 2. Overuse blocks bought automatically when a monthly bucket metric runs out (e.g. you used 1,000,000 edge requests; the 1,000,001st request buys a small block from fluid and proceeds) Monthly grants land at the start of every UTC month and do not roll over. **Topups never expire.** Use: - `POST https://cohesivity.ai/api/billing/topup` with body `{ "amount_cents": 1000 }` to add $5 – $500 to fluid via a hosted Razorpay payment link - `POST https://cohesivity.ai/api/billing/subscription` with body `{ "plan": "plus" | "pro" }` to upgrade the tier - `POST https://cohesivity.ai/api/billing/subscription/cancel` to cancel the subscription - `GET https://cohesivity.ai/api/me` to see your account, wallet, and subscription state - `GET https://cohesivity.ai/api/status` (with `Authorization: Bearer `) to see live tenant + bucket usage + notifications --- ## Failed calls do not cost anything Metered provider proxies (Gemini, Exa, Resend, YouTube, Weather, Geocoding) reserve quota in preflight and revoke it synchronously if the upstream fails. A request that returns a non-OK upstream status burns no quota and no fluid. --- ## Per-resource limits Every offering page below `/offerings/` shows the same numbers in machine-readable form, plus the rate-limit ceiling, fluid-overflow flag, and a worked example. The summary on this page is the headline; the offering pages are the published source of truth.