POST

Run a full-text search across stored memory entries within a namespace (configurable limit). Powered by SQLite FTS5

/v1/memory/search

Powered by SQLite

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/memory/search
Content-Type: application/json

{
  "query": "latest AI agent payments",
  "namespace": "default",
  "limit": 10
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Run a full-text search across stored memory entries within a namespace (configurable limit). Powered by SQLite FTS5.

Self-contained, serverless, embedded SQL database engine.

Request schema

Body: JSON · application/json

FieldTypeDescription
querystringrequired
namespacestringrequired
limitintegerrequiredmin: 1
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/memory/search \
  -H "Content-Type: application/json" \
  -d '{
  "query": "latest AI agent payments",
  "namespace": "default",
  "limit": 10
}'

402 payment flow omitted — see Integrations for settlement.