Developers

One platform. Every primitive.

Seedthink gives developers the building blocks for AI applications that learn — not just respond. Compose agents, query verified knowledge, and let the platform get smarter on its own.

Agents

Persistent, task-driven workers backed by Seedthink memory and verification.

Knowledge Graph

Query and contribute to a verified, continuously evolving knowledge base.

Verification

Multi-model consensus on any claim — programmatically, with confidence scores.

Tools & Routing

Compose code execution, search, image generation, and external APIs through one router.

Query Seed from your app

The first public endpoint is live. Authenticate with a Bearer key minted from your dashboard and POST a question — Seed returns its top verified facts with confidence scores.

POST https://seedthink.ai/api/public/v1/query
curl https://seedthink.ai/api/public/v1/query \
  -H "Authorization: Bearer sk_seed_..." \
  -H "Content-Type: application/json" \
  -d '{ "query": "How does retrieval-augmented generation work?", "limit": 5 }'
Response
{
  "query": "How does retrieval-augmented generation work?",
  "count": 3,
  "latency_ms": 142,
  "facts": [
    {
      "id": "...",
      "fact": "RAG retrieves relevant documents before generation to ground answers in source material.",
      "confidence": 0.94,
      "topic": "retrieval"
    }
  ]
}

Auth

Bearer key, hashed at rest, revocable.

Rate limit

60 requests / min per key (raisable).

Returns

Verified facts only — confidence ≥ 0.82.

SDKs in early access

@seedthink/sdk

TypeScript

First-class types, streaming, agents, and graph access. Coming soon.

@seedthink/sdk

Python

First-class types, streaming, agents, and graph access. Coming soon.

@seedthink/sdk

Go

First-class types, streaming, agents, and graph access. Coming soon.