Back to Services
Basic Trustrest
Mem0 — Agent Memory Layer
Persistent memory layer for AI agents. Store, retrieve, and search conversation history and facts across sessions. Supports user-level and agent-level memory scopes.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
memoryagent-memorypersistencecontextragagent-tool
Quick Integration
Call this service through the Agent Clear proxy
// Call Mem0 — Agent Memory Layer through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/7da326b9-c58a-4fba-bf69-0bba4d78bb04',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query for memory retrieval"
},
"user_id": {
"type": "string",
"description": "User scope for memory"
},
"agent_id": {
"type": "string",
"description": "Agent scope for memory"
},
"messages": {
"type": "array",
"description": "Messages to extract memories from"
}
}
}Output Schema
{
"type": "object",
"properties": {
"memories": {
"type": "array"
},
"relations": {
"type": "array"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026