Welcome to Mingo
Sign in with Google. No card required to start.
By signing in you agree to our Terms.
Balance
—
Plan
—
API key
Base URL: https://mingo.mingles.ai/v1
Choose a plan
When your plan quota runs out, requests keep working — they're billed per-token from your prepaid balance at the rates below.
Pay-as-you-go rates (USD per 1M tokens)
Charged after plan quota is depleted. Top up your balance to keep agents running uninterrupted.
| Model | Input / 1M | Output / 1M |
|---|---|---|
| Qwen3-235B-A22B-FP8 | $0.32 | $1.27 |
| Kimi-K2.6 | $0.48 | $2.39 |
| MiniMax-M2.7 | $0.21 | $0.84 |
Updated weekly.
Top up your balance
Add USD credit. Pay with card (Stripe) or USDT / USDC (NOWPayments).
Try it in the browser
Quick smoke test against the live API using your key. Charges your free quota or balance per token, exactly like a real request.
API keys
Use different keys for different apps so you can revoke just one when a laptop walks off.
Copy now — we won't show the full key again.
| Label | Created | Last used | |
|---|---|---|---|
| Loading… | |||
Invite friends — they get $20, you get $5
Share your link. When a friend signs up through it, they get $20 credit toward API usage, and you get $5. No cap on invites.
Friends joined
Code
Earned
Recent activity
| When | Description | Amount |
|---|---|---|
| No activity yet. | ||
One-minute quickstart
Drop-in OpenAI SDK. Just change the base_url.
from openai import OpenAI
client = OpenAI(
base_url="https://mingo.mingles.ai/v1",
api_key="YOUR_MINGO_KEY",
)
resp = client.chat.completions.create(
model="moonshotai/Kimi-K2.6",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)
Models available: moonshotai/Kimi-K2.6, Qwen/Qwen3-235B-A22B-Instruct-2507-FP8, MiniMaxAI/MiniMax-M2.7