EUrouter

Quickstart

Get started with EUrouter in under 5 minutes.


Create an account

Create an account if you haven't already.

Get your API key

  1. Go to your Dashboard
  2. Navigate to API Keys
  3. Click Create New Key
  4. Copy and store it securely — you won't see it again

Your key looks like this: eur_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Set your environment variable

export EUROUTER_API_KEY="eur_sk_live_your_key_here"

Make your first request

curl https://api.eurouter.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $EUROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "{MODEL_ID}",
    "messages": [
      {"role": "user", "content": "Say hello in three languages!"}
    ]
  }'

FAQ


Next steps


On this page