Quick start

From sign-up to first response — three steps

OpenAI-SDK compatible. Swap the baseURL and key — the rest of your code stays the same.

  1. 1

    Sign in with Telegram

    Your account is created automatically — no password, no email.

  2. 2

    Issue a key

    In the cabinet, hit “New key” to get an mf_live_…

  3. 3

    Call /v1

    Send a compatible request straight from your code.

  4. Issue a key
Request to /v1
curl https://mintform.app/v1/chat/completions \
  -H "Authorization: Bearer mf_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "gpt-5-mini",
  "messages": [
    {
      "role": "user",
      "content": "Hello, Mintform!"
    }
  ]
}'

Base URL and endpoints

Every generation call goes to one host. Point your OpenAI-compatible client at it, or call the endpoints directly.

https://mintform.app/v1

Reference