aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>2025-12-19 00:34:08 +0000
committerGitHub <[email protected]>2025-12-19 00:34:08 +0000
commitabf5882f744a5d119599638c3b0ba5b887c96d74 (patch)
treeacd7b679951c4081ca1d246bf37010fcab328c42
parentDelete apps/docs/search/response-schema.mdx (diff)
downloadsupermemory-mintlify/hybrid-search-api-docs-44822.tar.xz
supermemory-mintlify/hybrid-search-api-docs-44822.zip
Update apps/docs/search/overview.mdxmintlify/hybrid-search-api-docs-44822
Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
-rw-r--r--apps/docs/search/overview.mdx42
1 files changed, 42 insertions, 0 deletions
diff --git a/apps/docs/search/overview.mdx b/apps/docs/search/overview.mdx
new file mode 100644
index 00000000..31d93b08
--- /dev/null
+++ b/apps/docs/search/overview.mdx
@@ -0,0 +1,42 @@
+---
+title: Search memories
+description: Search through your stored memories and documents using semantic search
+---
+
+The v4 search API allows you to search through your stored memories and documents using semantic search.
+
+## Endpoint
+
+```
+POST https://api.supermemory.ai/v4/search
+```
+
+## Quick example
+
+```bash
+curl -X POST https://api.supermemory.ai/v4/search \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{
+ "q": "machine learning preferences",
+ "searchMode": "hybrid",
+ "limit": 10
+ }'
+```
+
+## Documentation
+
+<CardGroup cols={2}>
+ <Card title="Parameters" icon="sliders" href="/search/parameters">
+ Learn about all available search parameters including hybrid search mode
+ </Card>
+ <Card title="Response schema" icon="brackets-curly" href="/search/response-schema">
+ Understand the response structure
+ </Card>
+ <Card title="Examples" icon="code" href="/search/examples/memory-search">
+ See practical examples
+ </Card>
+ <Card title="Filtering" icon="filter" href="/search/filtering">
+ Learn about advanced filtering
+ </Card>
+</CardGroup>