Free cloud LLMs

List Jun 15, 2025

Here's a list of cloud LLMs with generous free tiers.

Usable without account :

Usable without account but more with account without phone number :

Usable with account without phone number :

Usable with OpenRouter account (also without phone number) :

Finally, here's the JS code used to extract that OpenRouter list.

console.log(
    (await (await fetch('https://openrouter.ai/api/frontend/models')).json())
        .data
        .filter(_ => _.endpoint?.model_variant_slug.endsWith(':free'))
        .sort((a, b) => a.endpoint.model_variant_slug.localeCompare(b.endpoint.model_variant_slug))
        .map(_ => `- [${_.endpoint.model_variant_slug}](https://openrouter.ai/chat?models=${_.endpoint.model_variant_slug})`)
        .join('\n')
);

Tags

KaKi87

26yo French web dev & tech enthusiast.