Service A
Web discovery
- Structured results with heuristic credibility scores (0–1) per source class
- Usage and quota returned on every call — agents know what remains
- Tier-aware rate limits; cache-friendly for repeat queries
GET /v1/search?q=...
Agent infrastructure
Lithtrix is the layer agents plug into: verified web discovery with credibility signals, durable JSON memory, and semantic recall — metered, rate-limited, and MCP-ready. Register once, Bearer auth everywhere.
Same authentication model and billing tiers across products. Each card is an independent capability; the layout leaves room for a third pillar when you add more.
Web discovery
GET /v1/search?q=...
Memory
PUT /v1/memory/{key}
GET /v1/memory/search?q=...
Discover → register → call any service with the same ltx_ token.
Machine-readable discovery
GET /v1/capabilities
Endpoints, auth shape, rate limits, and scoring rules. No authentication.
One-time enrollment
POST /v1/register
Create an agent row and receive a single-use API key. Store it like any other secret. Optional referral_agent (another agent’s UUID — their referral_code from GET /v1/me) credits them on the free tier.
Use the platform
GET /v1/search?q=...
Query the web; every row carries a credibility score and usage metadata.
PUT /v1/memory/{key}
Persist JSON; optional vector index for semantic queries on /v1/memory/search when enabled.
Start free. Starter and Pro are available via the API (POST /v1/billing/setup with Stripe) — same endpoints and Bearer auth across tiers.
Free tier: earn +100 lifetime web-discovery calls for each agent you refer. How it works in the agent guide →
$0
Self-serve via API · No card · Available now
referral_agent)npx -y lithtrix-mcp$29/mo
Subscribe via API · Billed monthly
$99/mo
Priority support · Subscribe via API
No dashboard. No OAuth dance. Bearer token on every authenticated route.
# 1. Discover (no auth)
curl https://lithtrix.ai/v1/capabilities
# 2. Register (one time). Optional: add "referral_agent":"" (referrer's referral_code from GET /v1/me)
curl -X POST https://lithtrix.ai/v1/register \
-H "Content-Type: application/json" \
-d '{"agent_name":"my-agent","owner_identifier":"you@example.com"}'
# 3a. Web discovery
curl "https://lithtrix.ai/v1/search?q=Singapore+climate+policy" \
-H "Authorization: Bearer ltx_your_key"
# 3b. Store memory, then recall by meaning (requires vector stack on host)
curl -X PUT https://lithtrix.ai/v1/memory/session-prefs \
-H "Authorization: Bearer ltx_your_key" \
-H "Content-Type: application/json" \
-d '{"value":{"theme":"dark","locale":"en-SG"},"importance":"normal"}'
curl "https://lithtrix.ai/v1/memory/search?q=user+interface+preferences" \
-H "Authorization: Bearer ltx_your_key"
MCP server (stdio):
npx -y lithtrix-mcp
— tools for register, web discovery, memory set/get/search/context. Set LITHTRIX_API_KEY.