Skip to main content
Dahl gives you an OpenAI-compatible API for open models running on decentralized GPU infrastructure. Use the same endpoints and request shape you already know (/v1/models, /v1/chat/completions), with a Bearer token from the landing page or POST /tokens. Base URL: https://inference.dahl.global/v1

Quickstart

Get an API key and send your first chat completion in under five minutes.

Try chat

Test models in the browser before wiring them into your app.

Get API key

Copy a key from the landing page or create one with POST /tokens.

Models

See which model IDs are available and which one to use by default.

How it works

  1. Get a tokenPOST https://inference.dahl.global/tokens or use inference.dahl.global/#api-key.
  2. List modelsGET /v1/models (no API key required).
  3. Call the APIPOST /v1/chat/completions with Authorization: Bearer and your token.
The recommended default model is MiniMax M2.7 (MiniMaxAI/MiniMax-M2.7). Other models are listed on the network; always pick IDs from GET /v1/models rather than hardcoding stale values.