From zero to your first AI response in 5 minutes.
Go to x420.ai and sign in with your email or phone number. We send you a one-time code — no password needed.
Go to Dashboard → Billing. Choose a credit pack or enter a custom amount. Your wallet is charged in euros, by the token. No subscription, no commitment.
Your personal API key (sk-proxy-…) is shown once at signup. You can always rotate it from the Dashboard. Keep it secret — it carries your credits.
X420.ai is 100% OpenAI-SDK compatible. Just change the base URL:
from openai import OpenAI
client = OpenAI(
base_url="https://api.x420.ai/v1",
api_key="sk-proxy-your-key",
)
response = client.chat.completions.create(
model="openai/gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)