Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dedaluslabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Dedalus Models API is an OpenAI-compatible endpoint that routes to every major LLM provider. One API key. Any model from Anthropic, OpenAI, Google, Meta, xAI, DeepSeek, Mistral, and more.

What you get

  • One key, any model. Switch providers with a string change.
  • OpenAI-compatible. Works with the OpenAI SDK, OpenAI Agents SDK, Vercel AI SDK, or any OpenAI-compatible client.
  • Streaming, tools, structured outputs, multimodal. All standard fields pass through.
  • Automatic retries and fallbacks across providers.
  • Token-for-token pricing. No markup. BYOK supported.

Supported models

Every major provider, routed through one endpoint. See the full catalog in Supported Models, or fetch the live list via GET /v1/models. Latest additions: anthropic/claude-opus-4-6, openai/gpt-5.2, google/gemini-3-pro-preview, xai/grok-4-1-fast-reasoning.

Quickstart

Use the official Dedalus SDK:
import asyncio
from dedalus_labs import AsyncDedalus, DedalusRunner

async def main():
    client = AsyncDedalus()
    runner = DedalusRunner(client)

    response = await runner.run(
        input="What is the capital of France?",
        model="anthropic/claude-opus-4-5",
    )

    print(response.final_output)

asyncio.run(main())
OpenAI-compatible. The same endpoint works drop-in with the OpenAI SDK, the OpenAI Agents SDK, the Vercel AI SDK, or any OpenAI-compatible client. Point baseURL at https://api.dedaluslabs.ai/v1 and pass your Dedalus API key.

Also works with

OpenAI SDK

Set baseURL and your Dedalus key.

OpenAI Agents SDK

Full agent loop, compatible out of the box.

Vercel AI SDK

Use the openai-compatible provider.

Capabilities

All standard OpenAI Chat Completions fields pass through. Deeper guides live in the SDK section:

Streaming

Server-sent events, token-by-token.

Tool calling

Let the model call your functions.

Structured outputs

Pydantic and Zod schemas, enforced.

Supported models

Browse the full catalog.

API Reference

Full endpoint-level reference lives in API Reference > Models API.
Last modified on May 2, 2026