Algolia is a hosted search API — typo-tolerant, fast, with ranking and faceting handled for you. It powers site search, app search and increasingly RAG retrieval. Here's the pricing, the free tier, and how to get your keys.
| Plan | Price | What you get |
|---|---|---|
| Build free tier | $0 | ~10,000 searches + 1M records / mo (with attribution) |
| Grow | pay-as-you-go | ~$0.50 / 1,000 searches beyond free; per-record fees |
| Premium | from ~$300+/mo | Higher volume, more features, support tiers |
| Elevate | custom | Enterprise volume, SLA, AI features |
Algolia's free Build plan covers roughly 10,000 searches and 1 million records per month, with a small "Search by Algolia" attribution. That's plenty for a blog, docs site or small app. The thing to watch is that as-you-type search fires a query per keystroke — debounce input so you don't burn the quota three times faster than expected.
1. Sign up at algolia.com and create an Application.
2. Open Settings → API Keys. You'll see three things:
• Application ID — identifies your app.
• Search-Only API Key — safe to ship in the browser.
• Admin API Key — full access; keep it server-side only.
3. Push records to an index, then query from the frontend with the Application ID + Search-Only key.
Run a query:
Meilisearch and Typesense are open-source, self-hostable alternatives that are far cheaper at scale if you can run a server (both also offer managed cloud). Brave Search (see our Brave Search guide) is for web-wide search rather than your own data. For scraping content to index, see Firecrawl. To compare options by need, try the API Alternatives Finder.
Yes — the free Build plan covers ~10,000 searches and 1M records per month with a small attribution. Good for small sites and side projects.
Create an application, then Settings → API Keys. Use the Application ID + Search-Only key in the browser, and keep the Admin key server-side.
As-you-type search sends one query per keystroke. Debounce the input (e.g. wait 150–250 ms after typing stops) so one search equals one intent, not five.
Not affiliated with Algolia. Prices are reference estimates — always verify on the official pricing page.