llmrelay
// signup

Get an API key.

Two minutes from here to your first API call. Register with email, get a key, make requests. Top up whenever you feel like it.

// bonus

Signed up through an invite link? Your account gets 500,000 tokens free, and your inviter earns 10% of your first top-up. Invite links only work from members who have topped up at least once.

live — 60-second signup, top up any time
1
Register

Email + password. No card and no phone to create the account.

2
Create an API key

One click in the console. Set a spend limit if you want.

3
Point your SDK at https://api.llmrelay.dev/v1

Any OpenAI-compatible SDK works out of the box. Every model at 50% off list.

Questions? [email protected]

// once you're in
from openai import OpenAI

client = OpenAI(
    base_url="https://api.llmrelay.dev/v1",
    api_key="llm_...",
)

resp = client.chat.completions.create(
    model="claude-opus-4-7",
    messages=[{"role": "user", "content": "Hello"}],
)