Seedthink API · Platform

Build on a growing intelligence.

The platform API for the shared global Seed: chat, memory, embeddings, verification. Looking to call one of your own planted Seeds? See the Planted Seed API.

Planted Seed API → call your private Seeds with a bearer key
POST /v1/chat
curl https://seedthink.ai/api/public/v1/chat \
  -H "Authorization: Bearer $SEEDTHINK_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [
      { "role": "user", "content": "Explain the Seedthink cycle." }
    ],
    "model": "tiny",
    "ground": true,
    "remember": true,
    "stream": false
  }'

Endpoints

MethodPath
POST/api/public/v1/chat
POST/api/public/v1/memory/search
GET/api/public/v1/memory/facts
POST/api/public/v1/memory/facts
DELETE/api/public/v1/memory/facts/{id}
POST/api/public/v1/embeddings
GET/api/public/v1/models
GET/api/public/v1/usage

All endpoints are live today. Authenticate with Authorization: Bearer sk_seed_… — create a key in the developer dashboard. Every response is the envelope { data, error, meta } with X-Request-Id, X-RateLimit-Remaining headers, CORS, and SSE on /chat when stream: true.

Learn more about the developer platform