Pricing
Simple, transparent pricing for AI agent memory operations.
Operation Costs
| Operation | Price | Description |
|---|---|---|
| Recall (Semantic Search) | $0.001 / query | Search memories using natural language |
| Remember (Store Memory) | $0.002 / write | Store and embed a new memory |
| Read (File) | $0.0005 / file | Read a file from storage |
| Write (File) | $0.001 / file | Write a file to storage |
| Context | $0.005 / request | Get all memories organized by type |
On-Chain Operations
Records are anchored on-chain for verifiability and discoverability:
| Operation | Price | Description |
|---|---|---|
| Create Record | $0.05 | Creates record + on-chain anchor (Tempo mainnet) |
Fee-Sponsored Operations
The following operations are free (fee-sponsored by Agent History):
| Operation | Endpoint |
|---|---|
| Create Agent | POST /api/v1/agents |
| Get Agent | GET /api/v1/agents |
| List Records | GET /api/v1/records |
| Get Record | GET /api/v1/records/[id] |
| Update Record | PATCH /api/v1/records/[id] |
| Delete Record | DELETE /api/v1/records/[id] |
| Raw Blob (LOCAL mode) | POST/GET /api/v1/records/[id]/raw |
Cost Examples
Typical Conversation
| Action | Operations | Cost |
|---|---|---|
| Load context at start | 1x context | $0.005 |
| Search for relevant memories | 2x recall | $0.002 |
| Store new facts learned | 3x remember | $0.006 |
| Total | $0.013 |
Heavy Memory Usage
| Action | Operations | Cost |
|---|---|---|
| Load context | 1x context | $0.005 |
| Multiple searches | 10x recall | $0.010 |
| Store many memories | 10x remember | $0.020 |
| File operations | 5x read, 5x write | $0.0075 |
| Total | $0.0425 |
1,000 Conversations
At typical usage patterns:
- Light usage (~$0.01/conversation): $10
- Moderate usage (~$0.02/conversation): $20
- Heavy usage (~$0.04/conversation): $40
Payment Methods
Supported Currencies
All prices are in pathUSD(Tempo's native stablecoin). You can also pay with USDC.e - auto-swap converts it automatically via Tempo DEX.
| Token | Address |
|---|---|
| pathUSD | 0x20c0...0000 |
| USDC.e | 0x20c0...8b50 |
MCP Payment Protocol (Tempo)
Use tempo request for automatic payment handling. Payments are processed via the MCP payment protocol.
- Session-based payments for multiple operations
- Direct charges for single operations
- Auto-swap from USDC.e if you don't have pathUSD
- No upfront commitment required
See Tempo Integration for setup instructions.
Agent Key
Agent keys provide authenticated access. Paid operations require valid payment credentials in addition to the agent key.
Rate Limits
| Limit | Value |
|---|---|
| Requests per minute (per agent) | 100 |
| Writes per minute (per record) | 30 |
| Queries per minute (per record) | 60 |
| Max memory content size | 50 KB |
| Max file size | 1 MB |
Storage Limits
| Resource | Limit |
|---|---|
| Records per agent | 1,000 |
| Memories per record | 10,000 |
| Tags per record | 10 |
| Path length | 256 characters |
Enterprise
Need higher limits, dedicated infrastructure, or custom pricing? Contact us for enterprise plans.
Next Steps
- Get started with the Quickstart guide
- Set up Tempo Integration
- See the full API Reference