Authentication

Head to supermemory’s Developer Platform built to help you monitor and manage every aspect of the API.

All API requests require authentication using an API key. Include your API key as follows:

Authorization: Bearer YOUR_API_KEY

Installing the clients

You can use supermemory through the APIs, or using our SDKs

https://api.supermemory.ai/v3

Add your first memory

curl https://api.supermemory.ai/v3/memories \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  -d '{"content": "This is the content of my first memory."}'

This will add a new memory to your supermemory account.

Try it out in the API Playground.

Content Processing

Search your memories

curl https://api.supermemory.ai/v3/search \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  -d '{"q": "This is the content of my first memory."}'

Try it out in the API Playground.

You can do a lot more with Supermemory, and we will walk through everything you need to.

Next, explore the features available in Supermemory