惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
博客园 - 聂微东
有赞技术团队
有赞技术团队
The Cloudflare Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
T
The Blog of Author Tim Ferriss
D
Docker
L
LangChain Blog
Vercel News
Vercel News
C
Check Point Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Use Claude Code and OpenAI Codex for Free with Fre...
Emmanuel (Emmo00) · 2026-06-29 · via DEV Community

If you've wanted to use Claude Code or OpenAI Codex without paying for expensive API usage, FreeModel.dev provides an easy way to do it. You simply create an account, generate an API key, and point the official CLI tools to FreeModel's API endpoint.

As a bonus, if you sign up using my referral link, both of us receive $10 in API credits after you verify your account.

👉 Sign up here: https://freemodel.dev/invite/FRE-0b7baf97


Why Use FreeModel.dev?

FreeModel.dev acts as an API provider compatible with official AI developer tools, allowing you to use:

  • Claude Code
  • OpenAI Codex CLI
  • VS Code extensions
  • Your own applications

Instead of paying immediately for API usage, new users can receive free credits through referrals.

Referral Bonus

When you create an account through my referral link and verify your account via phone or Telegram, both of us receive:

  • 🎁 $10 in API credits
  • ✅ No expiration
  • ✅ No limit on referrals
  • ✅ Works with any email provider

Referral link:

https://freemodel.dev/invite/FRE-0b7baf97

Credits are usually added within about a minute after verification.


Installing Claude Code

The setup uses the official Anthropic Claude Code CLI.

Step 1: Install Git Bash (Windows)

Git Bash is recommended because it handles paths and shell commands more reliably than Command Prompt.

Download Git for Windows and install it using the default options.


Step 2: Install Node.js

Claude Code requires Node.js 18 or newer.

Verify your version:

node --version

If your version is below 18, install the latest LTS release from Node.js.


Step 3: Create a FreeModel API Key

After signing into FreeModel:

  1. Open API Keys
  2. Click Create Key
  3. Give it a name
  4. Copy the key somewhere safe

Treat this key like a password.


Step 4: Install Claude Code

Install the official CLI:

npm install -g @anthropic-ai/claude-code

Restart your terminal afterwards.


Step 5: Configure Claude

Create the file:

C:\Users\<your-user>\.claude\settings.json

If the .claude folder doesn't exist, simply run:

claude

once, then close it.

Now create settings.json:

{
  "env": {
    "ANTHROPIC_API_KEY": "YOUR_API_KEY",
    "ANTHROPIC_BASE_URL": "https://cc.freemodel.dev",
    "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1"
  },
  "permissions": {
    "allow": [],
    "deny": []
  },
  "apiKeyHelper": "echo 'YOUR_API_KEY'"
}

Replace both instances of:

YOUR_API_KEY

with your actual FreeModel API key.


Step 6: Launch Claude

Restart your terminal and run:

claude

If everything is configured correctly, you'll see the Claude Code welcome screen and can start chatting with Claude immediately.


Installing OpenAI Codex

FreeModel also supports the official OpenAI Codex CLI.


Step 1: Install Codex

Install using npm:

npm install -g @openai/codex

or Homebrew:

brew install codex


Step 2: Create the Configuration Directory

Delete any previous configuration and recreate it.

PowerShell:

Remove-Item -Recurse -Force ~\.codex -ErrorAction SilentlyContinue
New-Item -ItemType Directory ~\.codex


Step 3: Create an API Key

Generate an API key inside your FreeModel dashboard.


Step 4: Create auth.json

Inside:

C:\Users\<your-user>\.codex

Create:

{
  "OPENAI_API_KEY": "YOUR_API_KEY"
}

Replace YOUR_API_KEY with your key.


Step 5: Create config.toml

In the same folder, create:

model_provider = "freemodel"
model = "gpt-5.5"
model_reasoning_effort = "xhigh"
disable_response_storage = true
preferred_auth_method = "apikey"

[model_providers.freemodel]
name = "freemodel"
base_url = "https://api.freemodel.dev"
wire_api = "responses"


Step 6: Verify Installation

Restart your terminal.

Check that Codex is installed:

codex -V

If you see a version number, you're ready.


Step 7: Start Coding

Navigate into your project:

cd your-project

Launch Codex:

codex

You can also use the official VS Code extension.


Updating Claude Code

To update to the latest version:

npm install -g @anthropic-ai/claude-code


Uninstalling Claude Code

npm uninstall -g @anthropic-ai/claude-code

You can also delete:

~/.claude

or

%USERPROFILE%\.claude

to remove your configuration.


Troubleshooting

Claude won't start

  • Ensure Node.js is version 18+
  • Confirm your API key is correct
  • Make sure settings.json is inside the .claude folder
  • Restart your terminal after editing configuration files

Codex isn't using FreeModel

Double-check that config.toml contains:

base_url = "https://api.freemodel.dev"

and that auth.json contains your API key.


Earn More Free Credits

FreeModel's referral program has no referral limit.

Every verified friend earns both of you:

  • $10 API credits
  • Credits never expire
  • Works with any email provider

Use my referral link to get started:

👉 https://freemodel.dev/invite/FRE-0b7baf97

Once you've verified your account, you'll receive your credits and can begin using Claude Code or Codex without paying upfront.