Base URLs

All endpoints are served from a single base URL. The path structure mirrors the OpenAI API exactly so SDK routing works automatically.

Endpoints
# Primary endpoint (OpenAI-compatible)
# All paths below are relative to this base URL.
https://api.thalam.ai/v1

# List available models
GET  /models

# Chat completions
POST /chat/completions

# Image generation
POST /images/generations

# Video generation
POST /videos/generations

# Poll async video task status
GET  /videos/tasks/{task_id}