Getting Started (2 mins)
Learn how to integrate Supermemory into your application
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 in the x-api-key
header as with your token:
Base URL
All API requests should be made to:
Add your first memory
This will add a new memory to your Supermemory account.
Try it out in the API Playground.
Content Processing
When you add content to Supermemory, it goes through several processing steps:
- Queued: Initial state when content is submitted
- Extracting: Content is being extracted from the source
- Chunking: Content is being split into semantic chunks
- Embedding: Generating vector embeddings for search
- Indexing: Adding content to the search index
- Done: Processing complete
The system uses advanced NLP techniques for optimal chunking:
- Sentence-level splitting for natural boundaries
- Context preservation with overlapping chunks
- Smart handling of long content
- Semantic coherence optimization
Search your memories
Try it out in the API Playground.