Documentation Index
Fetch the complete documentation index at: https://docs.memoclaw.com/llms.txt
Use this file to discover all available pages before exploring further.
Limits
MemoClaw applies rate limits per wallet address to ensure fair usage.| Scope | Limit | Window |
|---|---|---|
| All endpoints | 100 requests | 1 minute |
| Extract / Consolidate | 10 requests | 1 minute |
Rate limits are per wallet address, not per API key or IP. If you use the same wallet from multiple agents, they share the same limit.
Response Headers
Every response includes rate limit headers:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed in the window |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Handling 429 Responses
When rate limited, you’ll receive a429 response:
Retry Strategy
Use exponential backoff with theX-RateLimit-Reset header:
Tips
- Batch stores instead of individual calls —
POST /v1/store/batchhandles up to 100 memories in one request - Use
ingestinstead of multipleextract+storecalls - Cache recall results client-side when the same query is used repeatedly