repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | title: "Overview" |
| #3 | icon: "terminal" |
| #4 | iconType: "solid" |
| #5 | description: "REST APIs for memory management, search, and entity operations" |
| #6 | --- |
| #7 | |
| #8 | ## Mem0 REST API |
| #9 | |
| #10 | Mem0 provides a comprehensive REST API for integrating advanced memory capabilities into your applications. Create, search, update, and manage memories across users, agents, and custom entities with simple HTTP requests. |
| #11 | |
| #12 | <Info> |
| #13 | **Quick start:** Get your API key from the [Mem0 Dashboard](https://app.mem0.ai/dashboard/api-keys) and make your first memory operation in minutes. |
| #14 | </Info> |
| #15 | |
| #16 | --- |
| #17 | |
| #18 | ## Quick Start Guide |
| #19 | |
| #20 | Get started with Mem0 API in three simple steps: |
| #21 | |
| #22 | 1. **[Add Memories](/api-reference/memory/add-memories)** - Store information and context from user conversations |
| #23 | 2. **[Search Memories](/api-reference/memory/v2-search-memories)** - Retrieve relevant memories using semantic search |
| #24 | 3. **[Get Memories](/api-reference/memory/v2-get-memories)** - Fetch all memories for a specific entity |
| #25 | |
| #26 | --- |
| #27 | |
| #28 | ## Core Operations |
| #29 | |
| #30 | <CardGroup cols={2}> |
| #31 | <Card title="Add Memories" icon="plus" href="/api-reference/memory/add-memories"> |
| #32 | Store new memories from conversations and interactions |
| #33 | </Card> |
| #34 | |
| #35 | <Card title="Search Memories" icon="magnifying-glass" href="/api-reference/memory/v2-search-memories"> |
| #36 | Find relevant memories using semantic search with filters |
| #37 | </Card> |
| #38 | |
| #39 | <Card title="Update Memory" icon="pen" href="/api-reference/memory/update-memory"> |
| #40 | Modify existing memory content and metadata |
| #41 | </Card> |
| #42 | |
| #43 | <Card title="Delete Memory" icon="trash" href="/api-reference/memory/delete-memory"> |
| #44 | Remove specific memories or batch delete operations |
| #45 | </Card> |
| #46 | </CardGroup> |
| #47 | |
| #48 | --- |
| #49 | |
| #50 | ## API Categories |
| #51 | |
| #52 | Explore the full API organized by functionality: |
| #53 | |
| #54 | <CardGroup cols={2}> |
| #55 | <Card title="Memory APIs" icon="microchip" href="/api-reference/memory/add-memories"> |
| #56 | Core and advanced operations: CRUD, search, batch updates, history, and exports |
| #57 | </Card> |
| #58 | |
| #59 | <Card title="Events APIs" icon="clock" href="/api-reference/events/get-events"> |
| #60 | Track and monitor the status of asynchronous memory operations |
| #61 | </Card> |
| #62 | |
| #63 | <Card title="Entities APIs" icon="users" href="/api-reference/entities/get-users"> |
| #64 | Manage users, agents, and their associated memory data |
| #65 | </Card> |
| #66 | |
| #67 | <Card title="Organizations & Projects" icon="building" href="/api-reference/organizations-projects"> |
| #68 | Multi-tenant support, access control, and team collaboration |
| #69 | </Card> |
| #70 | |
| #71 | <Card title="Webhooks" icon="webhook" href="/api-reference/webhook/create-webhook"> |
| #72 | Real-time notifications for memory events and updates |
| #73 | </Card> |
| #74 | </CardGroup> |
| #75 | |
| #76 | <Note> |
| #77 | **Building multi-tenant apps?** Learn about [Organizations & Projects](/api-reference/organizations-projects) for team isolation and access control. |
| #78 | </Note> |
| #79 | |
| #80 | --- |
| #81 | |
| #82 | ## Authentication |
| #83 | |
| #84 | All API requests require authentication using Token-based authentication. Include your API key in the Authorization header: |
| #85 | |
| #86 | ```bash |
| #87 | Authorization: Token <your-api-key> |
| #88 | ``` |
| #89 | |
| #90 | Get your API key from the [Mem0 Dashboard](https://app.mem0.ai/dashboard/api-keys). |
| #91 | |
| #92 | <Warning> |
| #93 | **Keep your API key secure.** Never expose it in client-side code or public repositories. Use environment variables and server-side requests only. |
| #94 | </Warning> |
| #95 | |
| #96 | --- |
| #97 | |
| #98 | ## Next Steps |
| #99 | |
| #100 | <CardGroup cols={2}> |
| #101 | <Card title="Add Your First Memory" icon="rocket" href="/api-reference/memory/add-memories"> |
| #102 | Start storing memories via the REST API |
| #103 | </Card> |
| #104 | |
| #105 | <Card title="Search with Filters" icon="filter" href="/api-reference/memory/v2-search-memories"> |
| #106 | Learn advanced search and filtering techniques |
| #107 | </Card> |
| #108 | </CardGroup> |
| #109 |