Skip to main content

What is EURI?

EURI provides a unified, OpenAI-compatible API to access models from OpenAI, Google, Anthropic, Meta, Groq, Sarvam AI, and more — all through a single API key and base URL.

Why EURI?

  • One API, 40+ models — Switch between providers by changing the model parameter.
  • OpenAI-compatible — Drop-in replacement. Use the OpenAI SDK with EURI’s base URL.
  • Pay-per-use — No subscriptions for API usage. Top up your wallet and pay only for what you use.
  • Free tier — 10,000 tokens/day on free models. Plus users get 100,000 tokens/day.

Base URL

https://api.euron.one/api/v1/euri
All endpoints follow the OpenAI API format. If you’re already using the OpenAI SDK, just change the base URL and API key.

Quick example

curl -X POST https://api.euron.one/api/v1/euri/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_EURI_API_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      {"role": "system", "content": "You are a helpful assistant."},
      {"role": "user", "content": "What is EURI?"}
    ],
    "max_tokens": 200
  }'

Next steps