Agent infrastructure

One API key.
Multiple services.
Zero human setup.

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.

Services

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.

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=...

Service B

Memory

  • Key–value JSON with provenance: importance, source, confidence
  • Semantic recall over your own namespace when vectors are configured
  • List, stats, context reload, and MCP tools for Claude-compatible clients
PUT /v1/memory/{key}
GET /v1/memory/search?q=...

How it works

Discover → register → call any service with the same ltx_ token.

01

Machine-readable discovery

GET /v1/capabilities

Endpoints, auth shape, rate limits, and scoring rules. No authentication.

02

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.

03

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.

Pricing

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 →

Free

$0

Self-serve via API · No card · Available now

  • Web discovery: lifetime cap = 300 base + 100 per qualifying referral (UUID via referral_agent)
  • Memory: 1,000 ops / month · 5 MB stored
  • 60 requests / minute
  • MCP: npx -y lithtrix-mcp
Get started →

Starter

$29/mo

Subscribe via API · Billed monthly

  • Web discovery: 1,500 calls / month · overage ~$0.015/call
  • Memory: 5,000 ops / month · 25 MB stored
  • 600 requests / minute
Upgrade steps →

Pro

$99/mo

Priority support · Subscribe via API

  • Web discovery: 5,000 calls / month · overage ~$0.012/call
  • Memory: Unlimited ops · 100 MB stored
  • 600 requests / minute
Upgrade steps →

Built for agents

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.