Store

Wallet-keyed persistence: KV, documents, vector search & private files. 16 pay-per-call store endpoints for AI agents — keyless, USDC via x402.

store.blob-delete$0.0020
STORE: delete a file you uploaded, scoped to YOUR wallet — removes the bytes from storage and the metadata.
POST /api/store/blob-delete
store.blob-get$0.0100
STORE: download a file you uploaded with store.blob-put, in a single paid call, scoped to YOUR wallet.
POST /api/store/blob-get
store.blob-list$0.0020
STORE: list the files you've uploaded in a namespace, scoped to YOUR wallet — keys, sizes, content types, expiry (metadata only, not the bytes).
POST /api/store/blob-list
store.blob-put$0.0100
STORE: upload a file (any bytes) in a single paid call, scoped to YOUR wallet.
POST /api/store/blob-put
store.doc-delete$0.0020
STORE: delete a stored document by id, scoped to YOUR wallet.
POST /api/store/doc-delete
store.doc-get$0.0020
STORE: fetch a stored document by id, scoped to YOUR wallet.
POST /api/store/doc-get
store.doc-put$0.0020
STORE: index a text document for full-text keyword search, scoped to YOUR wallet.
POST /api/store/doc-put
store.doc-search$0.0020
STORE: full-text keyword search over documents you stored in a namespace, scoped to YOUR wallet.
POST /api/store/doc-search
store.kv-delete$0.0020
STORE: delete a key/value you stored, scoped to YOUR wallet.
POST /api/store/kv-delete
store.kv-get$0.0020
STORE: read back a JSON value you stored with store.kv-put, scoped to YOUR wallet.
POST /api/store/kv-get
store.kv-put$0.0020
STORE: persist a JSON value under a key, scoped to YOUR wallet (the x402 payer).
POST /api/store/kv-put
store.kv-scan$0.0020
STORE: list keys in a namespace, scoped to YOUR wallet, optionally filtered by key prefix and paginated with a cursor.
POST /api/store/kv-scan
store.usage$0.0020
STORE: report how much storage YOUR wallet is using — structured bytes (kv + documents + vectors) and blob bytes.
POST /api/store/usage
store.vector-delete$0.0020
STORE: delete a vector by id from a namespace, scoped to YOUR wallet.
POST /api/store/vector-delete
store.vector-query$0.0100
STORE: nearest-neighbor search over vectors you upserted in a namespace, scoped to YOUR wallet.
POST /api/store/vector-query
store.vector-upsert$0.0050
STORE: upsert a vector for semantic retrieval, scoped to YOUR wallet.
POST /api/store/vector-upsert

Discovery