<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&family=STIX+Two+Text:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Material+Symbols+Outlined:wght,FILL@400,0..1&display=swap" />
Quickstart

Free AI API, ready in minutes.

Sign up in Discord, unlock your key with /checkin, point the OpenAI SDK at FreeTheAi, send a chat completion.

1
Get a free key. Join discord.gg/secrets, run /signup, and complete the modal. Lost it? Use /resetkey.
2
Unlock today. Run /checkin once per UTC day and solve the human challenge. Until then, the API returns 403 daily_checkin_required.
3
Send a request. Install the OpenAI SDK, set base_url to https://api.freetheai.xyz/v1, and pick any alias from the model catalog.
pip install openai

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["FREETHEAI_API_KEY"],
    base_url="https://api.freetheai.xyz/v1",
)

response = client.chat.completions.create(
    model="opc/deepseek-v4-flash-free",
    messages=[{"role": "user", "content": "Reply with OK."}],
)

print(response.choices[0].message.content)
Next stops

Where to go next.