it's free*.ai

OVHcloud AI Endpoints

European hosting. Seven models at €0 on the catalog; the rest you can still call without an account at 2 requests a minute.

OVHcloud AI Endpoints is European serverless inference, hosted in France. The public catalog at ovhcloud.com/en/public-cloud/ai-endpoints/catalog/ lists 19 live models. Seven of them are priced at €0: NVIDIA Riva TTS (EN/DE/ES/IT), Qwen3Guard-Gen 0.6B and 8B, and Stable Diffusion XL.

Llama 3.3 70B, GPT-OSS 20B/120B and Qwen 3.5/3.6 are pay-as-you-go with a key, but you can call any of them with no account at 2 requests a minute. A registered Public Cloud project jumps to 400 a minute and starts billing. OpenAI-compatible at oai.endpoints.kepler.ai.cloud.ovh.net/v1. They say prompts are not used to train.

Free models
7
Max context
262K
Free tier
7 models at €0
Requirement
Nothing — no account

Endpoint

Base URLhttps://oai.endpoints.kepler.ai.cloud.ovh.net/v1
Env varOVH_AI_ENDPOINTS_ACCESS_TOKEN
Rate limit2 requests/minute anonymous; 400 requests/minute with a key

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://oai.endpoints.kepler.ai.cloud.ovh.net/v1',
  apiKey: process.env.OVH_AI_ENDPOINTS_ACCESS_TOKEN
})

const response = await client.chat.completions.create({
  model: 'Meta-Llama-3_3-70B-Instruct',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

Worth knowing

Models you get for free7