Skip to content
Open CastalyConsole

Get started

Quickstart

Create a Modelflare API key and send a first OpenAI-compatible request.

Sign in to the Modelflare console, open API Keys, and create a key. Choose a non-default group that lists the model you want to call.

Keep the key ready. Do not put it in client-side code or a public repository.

The OpenAI-compatible Chat Completions endpoint is:

POSThttps://modelflare.dev/v1/chat/completions
Terminal windowbash
curl https://modelflare.dev/v1/chat/completions \
-H "Authorization: Bearer YOUR_MODELFLARE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{"role": "user", "content": "Hello"}
]
}'

Replace gpt-5.6-sol with a model your key can access. The live catalog is on Models & Pricing.