Standard API Authentication Use your Taam Cloud API key with Bearer token authorization

Features

Quick Start

curl https://api.taam.cloud/v1/web \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "model": "taam-ai-search",
  "params": {
    "query": "What is AI?",
    "chatModel": {
      "provider": "openai",
      "model": "gpt-4o-mini"
    },
    "embeddingModel": {
      "provider": "openai",
      "model": "text-embedding-3-large"
    },
    "optimizationMode": "speed",
    "focusMode": "webSearch"
  }
}'

Search Modes

Next Steps

1

Get API Key

2
3

Make Requests