Overview
Hybrid Search delivers the best of both worlds: traditional keyword search results alongside AI-generated answers from your content. Users get direct, intelligent responses paired with a list of relevant articles β all in one seamless interface.Obtain Your API Key
Log in to the Miso Dashboard, select your target environment (e.g., Production), and navigate to the Overview section to copy your Publishable API Key.

There is one publishable key and one secret key per environment. The publishable key is used in client-side code; the secret key is used for server-side API calls.
Upload Your Corpus via API
Upload your content to Miso using the Product / Content Upload API. You can do this with any HTTP client β the steps below use Postman.Endpoint β View full API referenceStep 1 β Set your request headersIn Postman, go to the Headers tab and add your Secret API Key:

Step 2 β Add your request bodySwitch to the Body tab, select raw β JSON, and paste your corpus data:Step 3 β Send and verifyClick Send. A 
You can verify the upload under Miso Dashboard β Data Sets β Catalog.
| Header | Value |
|---|---|
X-API-KEY | Your Secret API Key |
Content-Type | application/json |

200 OK response confirms the corpus has been uploaded successfully.

Install the Miso SDK
Add the Miso JavaScript SDK to your webpage using either method:
- npm (Node Module)
- Script Tag
Install the SDK via npm:Then import it in your JavaScript file:
Complete Example
Here is a minimal working HTML file:client_sdk_test_hybrid_search.html, open in a browser, and append ?q=media to the URL to see the Hybrid Search module in action.
Live Demo & Visuals
Once configured, the Miso Hybrid Search module provides a unified, interactive UI out of the box. To verify your setup is working:- Open
client_sdk_test_hybrid_search.htmlin a browser. - Append
?q=mediato the URL β you should see an AI-generated answer alongside keyword search results, cited sources, and category filters.

API keys can be passed via the
api_key query parameter or the X-API-KEY request header. There is one publishable key and one secret key per environment β use the publishable key in client-side code and the secret key for server-side API calls.Next Steps
Ask Module Quick Start
Set up the Ask module for standalone Q&A.
Explore Module Quick Start
Add related questions to your article pages.
Product / Content Upload API
Full reference for uploading your corpus to Miso.
Search API
The underlying search API powering keyword results in Hybrid Search.
Ask Questions API
The underlying API powering AI-generated answers in Hybrid Search.
Authentication
Learn how API keys work and how to authenticate your requests.