Skip to main content
This guide covers: create an API key → set the Base URL → send a request.

Prerequisites

  • Access to the OmniMux console
  • Available quota (or a token provisioned by an admin)

Steps

1

Create an API key

Sign in to the console, open Tokens / API Keys, and create a key.Keys look like sk-.... Store them only on the server or in private environment variables — never in frontend code or public repos.
2

Set the Base URL

Gateway Base URL (API host):
For OpenAI-compatible SDKs, set:
The SDK appends /chat/completions and other paths. The console lives at geminix.cc/dashboard and is separate from the API host.
3

Send your first request

With curl:
model must be enabled for your account. Check the console or call GET /v1/models. See Models.

Official OpenAI SDKs

Python

Node.js

Next steps

API keys can spend account quota. Keep them server-side only. Rotate immediately if exposed.