diff options
| author | Dhravya Shah <[email protected]> | 2025-04-05 16:32:19 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-04-05 16:32:19 -0700 |
| commit | 9d6b56793a2dfbbec223afd2b29f628c92bef9ca (patch) | |
| tree | a699b85ff482e83afbd0ae6072570108d4381f2a /apps/docs | |
| parent | Fix: notion integration (diff) | |
| download | supermemory-9d6b56793a2dfbbec223afd2b29f628c92bef9ca.tar.xz supermemory-9d6b56793a2dfbbec223afd2b29f628c92bef9ca.zip | |
update:docs
Diffstat (limited to 'apps/docs')
| -rw-r--r-- | apps/docs/api-reference/endpoints/memory-management/post-add.mdx | 5 | ||||
| -rw-r--r-- | apps/docs/introduction.mdx | 2 | ||||
| -rw-r--r-- | apps/docs/mint.json | 2 | ||||
| -rw-r--r-- | apps/docs/quickstart.mdx | 8 |
4 files changed, 12 insertions, 5 deletions
diff --git a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx index 5ffab854..d3785614 100644 --- a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx +++ b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx @@ -1,3 +1,6 @@ --- openapi: post /add ----
\ No newline at end of file +--- + + +If i write something here, what happens?
\ No newline at end of file diff --git a/apps/docs/introduction.mdx b/apps/docs/introduction.mdx index 84e6117b..1d804825 100644 --- a/apps/docs/introduction.mdx +++ b/apps/docs/introduction.mdx @@ -22,7 +22,7 @@ Introducing the Supermemory API. An _affordable_, _easy-to-use_, and _production Trusted by Open source [9k\+ stars](https://git.new/memory), one of the fastest [growing projects in Q3 2024](https://runacap.com/ross-index/q3-2024/), Product of the day on [ProductHunt](https://www.producthunt.com/posts/supermemory). -...and thousands of you\\! +...and thousands of you\! ## Why Supermemory? diff --git a/apps/docs/mint.json b/apps/docs/mint.json index 87852288..bb47ae72 100644 --- a/apps/docs/mint.json +++ b/apps/docs/mint.json @@ -55,7 +55,7 @@ ], "navigation": [ { - "group": "Get Started", + "group": "Get Started (5 mins)", "pages": ["introduction", "quickstart", "self-hosting"] }, { diff --git a/apps/docs/quickstart.mdx b/apps/docs/quickstart.mdx index b2b4db75..4d94b5bc 100644 --- a/apps/docs/quickstart.mdx +++ b/apps/docs/quickstart.mdx @@ -1,5 +1,5 @@ --- -title: "Getting Started" +title: "Get Started (5 mins)" description: "Start using Supermemory API in under 5 minutes" --- @@ -20,6 +20,10 @@ To use the Supermemory API, you'll need: </Accordion> </AccordionGroup> +For even starter quickstart, you can use our API playground here - [API Playground](/api-reference/endpoints/add-new-content) + +You can also browse the postman collection - [Postman Collection](https://documenter.getpostman.com/view/21641015/2sB2cUBhvq#cf679c90-d60b-4d0d-a7aa-a909e97e41c3) + ## Base URL All API requests should be made to: @@ -45,7 +49,7 @@ Try it out in the [API Playground](/api-reference/endpoints/add-new-content) ```bash curl -X GET https://v2.api.supermemory.ai/search \ - -H "Authorization: Bearer YOUR_API_KEY" \ + -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"q": "This is the content of my first memory."}' ``` |