Get started

  1. Create a key on the API Keys page and copy the one-time secret.
  2. Send a Chat Completions request to verify the key — see the example below.
  3. Use Docs and API Reference for models, streaming, diagnostics, and image-generation details.
curl https://platform.continualmi.com/api/mgpt/chat/completions \
  -H "Authorization: Bearer $CONTINUAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "messages": [
      { "role": "user", "content": "Say hello in one sentence." }
    ]
  }'

Explore