Search

Search for a command to run...

Documentation

Build on 200+ models with one API

OpenDunes speaks the OpenAI API. Change two lines — the base URL and your key — and every model in the catalog is one call away, billed in Dinars.

Quickstart

Your first request

curl https://opendunes.com/api/v1/chat/completions \
  -H "Authorization: Bearer $OPENDUNES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-sonnet-5",
    "messages": [{ "role": "user", "content": "Marhba! Dunes in one line?" }]
  }'
01

Create an API key

Generate a key from your dashboard — one key, every model.

02

Set the base URL

Point your SDK at https://opendunes.com/api/v1.

03

Pick a model slug

Copy any slug from the catalog and pass it as model.

Browse model slugs
Reference

Explore the docs