๐Ÿ”

KV Memory Get API

Retrieve a previously stored key-value pair by key and optional namespace. Returns the value along with timestamps.

API Docs $0.001 / get

About this tool

Retrieve any key-value pair you previously stored with /memory/kv/set. Data is isolated per API key โ€” you can only access your own data. Returns the stored value (with type preserved), plus created_at and updated_at timestamps.

Quick Start

curl "https://api.iteratools.com/memory/kv/get?key=user:preferences&namespace=myapp" \ -H "Authorization: Bearer YOUR_KEY"

Response

{"ok": true, "data": {"key": "user:preferences", "value": {"theme": "dark", "language": "en"}, "namespace": "myapp", "created_at": 1742558400, "updated_at": 1742558400}}

Parameters

Query ParamTypeDescription
keystring *Key to retrieve
namespacestringNamespace to look up in (default: "default")

Pricing

$0.001 per get via x402 micropayment on Base (USDC).

Full Documentation Browse All Tools