-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx402.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathx402.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "Agent Memory API",
"description": "Persistent encrypted memory storage for AI agents - rent a brain for your agent",
"version": "1.0.0",
"author": "ppsllc4-byte",
"category": "agent-infrastructure",
"endpoint": "https://agent-memory-api-production.up.railway.app",
"pricing": {
"model": "pay-per-use",
"store": 0.001,
"retrieve": 0.001,
"search": 0.005,
"currency": "USD"
},
"endpoints": {
"store": {
"method": "POST",
"path": "/memory/store",
"description": "Store encrypted memory"
},
"retrieve": {
"method": "GET",
"path": "/memory/{memory_id}",
"description": "Retrieve decrypted memory"
},
"search": {
"method": "POST",
"path": "/memory/search",
"description": "Search agent memories"
},
"stats": {
"method": "GET",
"path": "/agent/{agent_id}/stats",
"description": "Agent memory statistics (FREE)"
}
},
"tags": ["memory", "storage", "context", "persistence", "encryption", "agent-brain", "knowledge"]
}