Add powerful full-text search to your application in minutes. Typo tolerance, faceted filters, and real-time suggestions—no Elasticsearch cluster required.
<50ms
Query Response
100M+
Documents Indexed
99.9%
Relevance Score
Real-time
Index Updates
Built-in features that would take months to implement yourself—ready to use in minutes.
Lightning-fast search across all your content with support for complex queries, phrase matching, and boolean operators.
Smart fuzzy matching handles misspellings and typos, ensuring users find what they need even with imperfect queries.
Dynamic faceting lets users refine results by categories, attributes, price ranges, and custom fields.
Real-time search suggestions as users type, powered by your indexed data and search analytics.
Configure synonyms and language-aware stemming so searches for "running" also find "run" and "jog".
Track popular queries, zero-result searches, and click-through rates to optimize your search experience.
Index your data and start searching immediately. No complex configuration, no schema definitions—just index and query.
// Index your documents
await client.search.index('products', [
{ id: '1', name: 'Wireless Headphones', price: 299 },
{ id: '2', name: 'Bluetooth Speaker', price: 149 }
]);
// Search with typo tolerance
const results = await client.search.query('products', {
query: 'wirless headphnes', // typos handled!
filters: { price: { lte: 300 } },
facets: ['category', 'brand']
});
// Get suggestions as user types
const suggestions = await client.search.suggest('products', {
query: 'wire',
limit: 5
});From e-commerce product search to knowledge base discovery—one API, endless possibilities.
Power product discovery with faceted search, filters by price/brand/category, and personalized recommendations.
Let users search articles, videos, and documents with highlighting and relevance-ranked results.
Build searchable documentation and help centers with auto-complete and related content suggestions.
From first request to search results in under five minutes.
Name your index and optionally configure settings like language and ranking rules.
Send your JSON documents. We auto-detect types and create searchable fields.
Add synonyms, custom ranking, and facets to fine-tune your search experience.
Query your index and monitor performance with built-in analytics.
Join thousands of developers who ship faster with 23blocks Search. Free tier available.
Get product updates, engineering posts, and new block announcements delivered to your inbox.