Skryx for developers
Skryx is a hosted search engine you call from any backend. Index your products, documents or content, then query them with sub-50 ms latency, typo tolerance, synonyms, filters, facets and AI-powered query understanding.
5 minutes
Quickstart
From signup to your first search result.
API reference
Search endpoint
Every parameter, every response field, ready to copy.
Coming from Algolia?
Migration guide
Step-by-step migration with an interactive config converter.
AI features
Smart search
Query understanding, synonym suggestions, ranking insights.
# What Skryx gives you
- Sub-50 ms search latency across millions of documents.
- Typo tolerance, synonyms, ranking rules — configured per index, applied automatically.
- Auto-sync from any feed URL — Google Merchant, Meta Catalog, JSON, CSV. No glue code.
- AI Query Understanding — turns vague queries ("headphones for travel") into precise search terms with no extra work from your side.
- AI Search Coach — analyses your search analytics every day and tells you which synonyms you're missing and where the catalog has gaps.
- Multi-tenant by design — built for SaaS. Hard isolation per tenant, scoped API keys.
- EU-hosted, GDPR by default.
# REST + JSON
The API is plain REST. Every request takes JSON, every response returns JSON. You authenticate with a bearer token; you target an index by name. That's the whole surface area.
POST /v1/indexes/products/query HTTP/1.1
Host: api.skryx.io
Authorization: Bearer sk_live_...
Content-Type: application/json
{ "q": "wireless headphones", "query_by": "title,brand" }
# What's next
- Quickstart — sign up and run your first search in 5 minutes.
- Authentication — API keys, scopes, where to put the bearer token.
- Concepts: how search works — the mental model behind queries, scoring and ranking.