Skip to main content
MemoClaw uses pay-per-request pricing. No subscriptions, no API keys, no monthly minimums. Pay with USDC on Base. Only endpoints that use OpenAI (embeddings or GPT-4o-mini) are charged. Everything else is free. These endpoints consume OpenAI resources and are charged per request.

Embedding endpoints ($0.005)

EndpointOperationPrice
POST /v1/storeStore a memory$0.005
POST /v1/store/batchStore up to 100 memories$0.04
POST /v1/recallSemantic search$0.005
PATCH /v1/memories/:idUpdate a memory$0.005
PATCH /v1/memories/batchBatch update$0.005

LLM + embedding endpoints ($0.01)

EndpointOperationPrice
POST /v1/memories/extractExtract facts via LLM$0.01
POST /v1/memories/consolidateMerge similar memories$0.01
POST /v1/ingestZero-effort ingestion$0.01
POST /v1/contextAssemble context block$0.01
POST /v1/migrateImport markdown files$0.01

Free endpoints

These endpoints don’t use OpenAI and are always free — no credits consumed.
EndpointOperation
GET /v1/memoriesList memories
GET /v1/memories/:idGet a single memory
DELETE /v1/memories/:idDelete a memory
DELETE /v1/memoriesBulk delete
POST /v1/searchFull-text keyword search
GET /v1/suggestedProactive suggestions
GET /v1/memories/coreGet core memories
POST /v1/memories/corePin a core memory
DELETE /v1/memories/core/:idUnpin a core memory
GET /v1/memories/:id/historyMemory change history
POST /v1/memories/:id/relationsCreate a relation
GET /v1/memories/:id/relationsList relations
DELETE /v1/memories/:id/relations/:relationIdDelete a relation
GET /v1/memories/:id/graphTraverse memory graph
GET /v1/exportExport memories
GET /v1/namespacesList namespaces
GET /v1/statsUsage statistics
POST /auth/sessionExchange signature for JWT
GET /v1/free-tier/statusCheck free tier
GET /v1/free-tier/infoFree tier policy
GET /healthHealth check

Free tier

Every wallet gets 100 free paid-endpoint calls. No payment required to start. Free endpoints are always free regardless.
After the free tier, pay per call with x402 (USDC on Base). A typical agent doing 150 store/recall calls per day costs about $0.75/day or ~$22.50/month.

Cost example

Usage patternDaily costMonthly cost
Light (50 store + 50 recall)$0.50~$15
Medium (100 store + 200 recall)$1.50~$45
Heavy (200 store + 400 recall + 20 ingest)$3.20~$96
List, get, delete, search, and stats are all free. Only store, recall, and AI-powered endpoints cost money.