This commit is contained in:
Dhravya Shah 2025-03-23 20:27:24 -07:00
parent f8dfb87604
commit 2016145b83
5 changed files with 411 additions and 8 deletions

1
.gitignore vendored
View file

@ -1,6 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
bun.lockb
tests/
new-api/
packages/scripts/*
# Dependencies

View file

@ -12,7 +12,7 @@ You can do all this filtering using Supermemory's api.
Here's a quick example
```json [expandable]
```json
{
"AND": [
{

View file

@ -29,7 +29,7 @@
{
"name": "API Reference",
"url": "api-reference/endpoints",
"openapi": "/openapi.json"
"openapi": "https://v2.api.supermemory.ai/openapi"
},
{
"name": "Changelog",
@ -43,9 +43,9 @@
"url": "https://git.new/memory"
},
{
"name": "Community",
"icon": "discord",
"url": "https://discord.gg/supermemory"
"name": "Ask the founder",
"icon": "mail",
"url": "mailto:dhravya@supermemory.com"
},
{
"name": "X (Twitter)",
@ -60,7 +60,7 @@
},
{
"group": "Essentials",
"pages": ["essentials/distinguishing-users", "essentials/architecture", "essentials/pricing"]
"pages": ["essentials/metadata-filtering", "essentials/pricing"]
},
{
"group": "Changelog",

File diff suppressed because one or more lines are too long

View file

@ -14,7 +14,7 @@ To use the Supermemory API, you'll need:
1. Login into https://dev.supermemory.ai and create an organization
2. Create an api key, copy and save it securely.
![image.png](/apps/docs/image.png)
![image.png](/image.png)
Keep your API key secure and never share it publicly. You'll need this key for authenticating all API requests.
</Accordion>