Agent stores or retrieves long-term data via encrypted DB — persistent memory across sessions. Never lose context again.
curl -X POST https://api.siliconbridge.xyz/v1/tasks \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"service_type": "memory_store", "payload": {"operation": "store", "key": "customer_123_prefs", "value": {"timezone": "PST"}}}'
# Python SDK
from siliconbridge import SiliconBridge
sb = SiliconBridge(api_key="YOUR_KEY")
sb.memory_store("customer_123_prefs", {"timezone": "PST"})
data = sb.memory_retrieve("customer_123_prefs")
Your agent submits store/retrieve request with memory_store service type
Data is encrypted and stored in our secure database with your API key as access control
Your agent retrieves data instantly via API. Persists across sessions, servers, and frameworks.
Each key-value pair up to 1MB. Unlimited keys. Pricing is per-operation.
Yes. AES-256 at rest, TLS in transit. Only your API key can access your data.
Typical retrieval is <100ms. Geo-replicated for fast global access.
Sign up with wallet, Nostr, or email. $10 free credits. No credit card required.