Mem API
Mem API Documentation
Overview
The Mem API provides two primary endpoints for creating content in Mem:
- Create Note (
/v2/notes
): For precise control over structured note creation - Mem It (
/v2/mem-it
): For intelligent processing of raw, unstructured content
Choosing the Right Endpoint
Use Create Note when: | Use Mem It when: |
---|---|
You have pre-formatted Markdown content | You have raw content (HTML, email, transcript) |
You want to create exactly one new note | You want Mem to potentially create or update multiple notes |
You need precise control over formatting | You want Mem to extract and process content automatically |
You’re building a workflow integration (Zapier, etc.) | You’re building a clipper, email integration, or capture tool |
You want to apply specific templates | You want intelligent content extraction and summarization |
You want direct control over the result | You want to preserve the source of information with attachment chips |
Common Use Cases
Create Note
- Task management integrations
- Calendar event to note conversion
- CRM integrations
- Structured data from forms
- Templates with consistent formatting
Mem It
- Web page clipping
- Email processing
- Meeting transcript analysis
- Chat/message archiving
- Quick capture without formatting
Create Note API
Create structured, formatted notes with precise control over organization and formatting.
Endpoint: POST https://api.mem.ai/v2/notes
Request Parameters
Required Parameters
content
Markdown formatted string representing the note content. The first line is automatically interpreted as the title.
Example:
Optional Parameters
add_to_collections
Array of strings representing collection titles or IDs to add the note to. If a collection doesn’t exist, a new one will be created.
Example:
Example with IDs:
auto_organize
Boolean or string that controls automatic organization. If true
, Mem will automatically organize the note into relevant collections. If a string is provided, it will be used as custom organization instructions.
Default: true
Examples:
apply_template
String representing a template title or ID to apply to the note content.
Example:
Example with ID:
auto_format
Boolean or string that controls automatic formatting. If true
, Mem will automatically format the note content. If a string is provided, it will be used as custom formatting instructions.
Default: true
Examples:
created_at
ISO 8601 datetime string to set as the note’s creation time.
Default: current time
Example:
updated_at
ISO 8601 datetime string to set as the note’s last update time.
Default: same as created_at
Example:
Example Requests
Basic Note Creation
Using a Template with Collections
Custom Organization Instructions
Response
A successful request returns a 201 Created
status and the newly created note object:
Mem It API
The intelligent way to remember anything - just throw content at Mem and let it handle the rest.
Endpoint: POST https://api.mem.ai/v2/mem-it
Request Parameters
Core Parameters
input
(required)
Any raw content you want to remember - web pages, emails, transcripts, articles, or simple text.
Examples:
- HTML from a webpage
- Email text (including headers)
- Meeting transcript
- Text from a document
- Simple notes or thoughts
instructions
Optional guidance on how you want this information processed or remembered.
Examples:
- “Extract the key ideas and action items from this meeting”
- “Save this recipe with just the ingredients and steps”
- “Add this to my reading list and extract author and genre”
context
Additional background information that helps Mem understand how this input relates to your existing knowledge.
Examples:
- “This is related to my Project Alpha research”
- “This is from the quarterly planning meeting”
- “This is a follow-up to our discussion yesterday”
timestamp
When this information was encountered or created (ISO 8601 datetime).
Default: Current time
Example:
Source Attribution Parameters
Mem It lets you preserve a reference to the original content, which will appear as an attachment chip on any notes created from this input.
source_title
A display name for the original content. This will appear in the attachment chip’s label.
Examples:
- “Meeting Transcript - Product Team (April 2)”
- “Bloomberg Article: Tech Trends 2025”
- “Email from Jamie - Project Update”
source_url
Optional link to the original content. When provided, the attachment chip becomes clickable.
Examples:
- “https://news.example.com/tech-trends-2025”
- “outlook://message/AAMkAGNhOWY3…” (for email protocols)
- “slack://channel/C01234ABCDE/p1234567890123456” (for app-specific deep links)
source_kind
Optional string that describes the kind of source. Mem will display an appropriate icon based on the provided value.
Common values:
- “webpage”
- “email”
- “transcript”
- “document”
- “message”
- “note”
- “calendar”
- “task”
You can provide any string value, and Mem will map it to the closest matching icon. If no match is found, a generic source icon will be used.
Example Requests
Remembering a Web Article
Remembering a Meeting Transcript
Quick Recommendation Capture
Response
A successful request returns a 201 Created
status and information about the created content:
Understanding Source Attribution
When you provide source information, Mem creates an attachment chip that preserves the connection to the original content. This creates a powerful experience where:
- Users can see where information came from
- The original unprocessed content remains accessible
- Multiple notes created from the same source maintain a visual relationship
This is especially useful for applications like web clippers, email processors, or transcript analyzers, where the final notes may contain only a portion or transformation of the original content.
Authentication
All API requests require authentication using a Bearer token in the Authorization header:
To obtain an API token, visit the API section in your Mem settings.
Rate Limits
- Free tier: 25 requests per day while in Alpha
When rate limits are exceeded, the API will return a 429 status code.
Error Handling
The API uses standard HTTP status codes to indicate success or failure:
- 2xx: Success
- 400: Bad request (invalid parameters)
- 401: Unauthorized (invalid token)
- 404: Resource not found
- 429: Rate limit exceeded
- 500: Server error
Error responses include a JSON body with details:
Best Practices
- Choose the right endpoint based on your use case and content format
- Use descriptive titles in your content or source_title
- Leverage the auto-organization and auto-formatting features for best results
- Provide context when using Mem It for better content understanding
- Include source information when capturing external content
- Set accurate timestamps for historical content