it's free*.ai

Nscale

European GPU cloud. New accounts get a $5 credit, then pay-as-you-go.

Nscale is a European GPU cloud with serverless inference. New accounts get $5 of starter credit, then pay-as-you-go. There is no published RPM and no standing free catalogue of two models.

OpenAI-compatible at inference.api.nscale.com/v1, 128K context, no card to claim the credit. EU-hosted. Treat the five dollars as a trial, not a contract.

Free models
2
Max context
128K
Free tier
$5 starter credit
Requirement
Email account, no card

Endpoint

Base URLhttps://inference.api.nscale.com/v1
Env varNSCALE_API_KEY
Rate limit$5 starter credit, no published RPM

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://inference.api.nscale.com/v1',
  apiKey: process.env.NSCALE_API_KEY
})

const response = await client.chat.completions.create({
  model: 'meta-llama/Llama-4-Scout-17B-Instruct',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

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

Worth knowing

Models you get for free2