/{tenant}/searchSearch
Start an intent-aware search or continue an existing cursor session.
Querix gives product teams one authenticated API for exact filters, broad catalog browsing, and natural-language discovery. Start with the integration contract; use the platform and data guides when your team needs deeper context.
Request
POST /api/v1/<tenant>/search
X-API-Key: <server-side-key>
{
"query": "bike in Chennai under 1000",
"page_size": 20
}Response
200 OK{
"items": [{ "id": "p_1042", "title": "City Bike" }],
"interpreted_query": {
"category": "bicycles",
"location": "Chennai",
"max_price": 1000
},
"pagination": { "has_more": true, "next_cursor": "..." }
}Canonical API surface
Every company receives a tenant slug and server-side key. Your backend integrates the endpoints below; Querix owns retrieval, ranking, cursors, and search operations.
/{tenant}/searchStart an intent-aware search or continue an existing cursor session.
/{tenant}/auth/verifyConfirm that an issued API key belongs to the requested tenant endpoint.
/{tenant}/healthInspect the search dependencies behind one authenticated company experience.
/{tenant}/usageRetrieve tenant-scoped monthly request accounting for reporting.
Every issued key is bound to a tenant endpoint and stays behind your backend boundary.
Keys, public fields, limits, cursors, cache state, and search storage remain tenant-scoped.
Use public readiness for traffic checks and authenticated health for tenant dependencies.
Tenant onboarding
The integration is small, but a reliable launch also covers catalog quality, relevance acceptance, and operational ownership.
Agree the tenant slug, public response fields, source mapping, limits, and any compatibility adapter required by an established client.
Run tenant normalization and validation, then atomically promote a complete retrieval dataset.
Keep the tenant key server-side and expose only the search behavior your web or mobile client needs.
Exercise exact, semantic, multilingual, zero-result, cursor, fallback, and concurrency cases from representative customer queries.
Gate traffic on readiness, monitor authenticated tenant health, and review separate company and internal daily analytics.
Documentation paths
Start here · API integration
Authentication, backend proxy patterns, request and response contracts, cursor pagination, errors, and launch checks.
Search platform
Structured browse, intent-aware discovery, result freshness, tenant boundaries, and routing behavior.
Architecture summary
A concise view of routing, data freshness, tenant isolation, and predictable failure behavior.
Data lifecycle
Read-only source refresh, tenant normalization, retrieval content, quality gates, incremental updates, and atomic publishing.
Service reliability
Readiness, tenant health, index refreshes, observable fallback behavior, and production assurance.
Browser and mobile clients should call your backend proxy. Querix examples use placeholders intentionally; issued keys, admin diagnostics, and private data never belong in public source or client-visible configuration.
Need help with your integration?
Talk to us about your catalog and search contract.