Docs

Unlimited AI is OpenAI-compatible. It's a drop-in replacement for any OpenAI client - just change the base URL and API key.

Quick start

  1. Sign up at /signup
  2. Get your ul_sk_ API key from the dashboard
  3. Top up $1 (USDT or card) - or use a promo code
  4. Start making API calls. The first call auto-activates your week.

Endpoints

Models

Model Daily cap Use case
qwen3-235b NONE General-purpose. Code, reasoning, chat. Default.
llama-3.3-70b 1M tokens combined Fast inference via Groq.
llama-3.2-90b-vision 1M tokens combined Image understanding.
whisper-large-v3 30 min audio Speech-to-text.

cURL example

curl https://unlimited-ai.net/v1/chat/completions \
  -H "Authorization: Bearer $UL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-235b",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": true
  }'

Python (OpenAI SDK)

from openai import OpenAI

client = OpenAI(
    api_key="ul_sk_...",
    base_url="https://unlimited-ai.net/v1"
)

response = client.chat.completions.create(
    model="qwen3-235b",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

Cursor

  1. Open Settings → Models
  2. Click Add custom OpenAI base URL
  3. Set base URL: https://unlimited-ai.net/v1
  4. API key: paste your ul_sk_ key
  5. Add model: qwen3-235b
  6. Save and select the model in chat

OpenCode / OpenClaw / Continue

Same drill - configure as an OpenAI-compatible provider:

{
  "openai": {
    "baseURL": "https://unlimited-ai.net/v1",
    "apiKey": "ul_sk_...",
    "model": "qwen3-235b"
  }
}

Rate limits

What "no cap" means

We don't count daily tokens on Qwen3-235B. Make as many requests as you want for the entire week. We only block bots that exceed 10 RPS (which no human can reach by typing).

Pricing changes

Prices may change for new subscriptions with 7 days notice. Existing active weekly subs are honored at the price you paid until they expire.