TryModels is a high-performance, community-first directory and API designed to bridge the gap between developers and free AI resources. It showcases modern web architecture, automated data tracking, and developer-centric UX.
In the fast-moving AI landscape, finding stable free-tier models is a challenge. TryModels automates the discovery of Large Language Models (LLMs) that offer zero-cost access or generous free trials, providing a clean interface and a robust API for your next project.
- 🔍 Real-time Discovery: Always-up-to-date tracking of Gemini, OpenAI, Claude, and more.
- ⚡ Developer API First: Built with integration in mind. One endpoint, all models.
- 🛠 Modern Engineering: Architected with Next.js 15, Turbopack, and Tailwind CSS for maximum speed.
- 💎 Vivid UX: A premium experience for browsing model capabilities, context limits, and quotas.
Looking for a reliable list of free AI models for your application? Skip the manual research and plug directly into our CORS-enabled JSON endpoint.
Endpoint: GET https://trymodels.com/api/models
// Fetch the latest free models in one call
const response = await fetch("https://trymodels.com/api/models");
const { models } = await response.json();
// Example: Filter reasoning models
const reasoningModels = models.filter(m => m.reasoning);
console.log(`Found ${reasoningModels.length} reasoning-capable models!`);This project is built for the global developer community. Whether you want to add a new provider or improve the crawler logic, your contribution is what makes this project thrive.
- Suggest a Model: Found a new free tier? Open an issue.
- Build the Core: Fork, branch, and PR. Let's make the best AI directory together.
- Star the Repo: If this tool helped you, show some love! ⭐
- Clone:
git clone https://github.com/arieldeibe/trymodels.git - Install:
npm install - Env:
cp .env.example .env - Dev:
npm run dev
This project is licensed under the MIT License.
Built with ❤️ by the community

