Apr 8, 2026
Latest PostApr 8, 2026
Latest PostMost people trying ngrok's AI Gateway today are on the free plan. You sign up, want to make a request, but don't have an OpenAI or Anthropic key yet. When we shipped AI Gateway API keys and credits earlier this month, your only option was to go set up provider accounts yourself or upgrade to a pay-as-you-go plan to use ngrok-managed keys.
We wanted to fix that first. Free plan users can now create AI Gateway API Keys and purchase credits directly from the dashboard. Same keys, same credits, same gateway.
The only thing that changed is who can access them. Hobbyist support is still coming.
If you already have an ngrok account, you already have access. If you don't, signing up is free.
The setup if you're on a free plan is the same as a paid plan:
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://your-gateway.ngrok.app/v1",
apiKey: "ng-xxxxx-g1-xxxxx",
});
const response = await client.chat.completions.create({
model: "ngrok/auto",
messages: [{ role: "user", content: "Hello!" }],
});Pricing hasn't changed either. Provider costs are passed through at cost, and the processing fee is still $0.05 per million tokens for requests using ngrok-managed keys. At current model pricing, $5 goes a long way for testing and development.
BYOK is still free on all plans, same as before.
We're still working through the list from last time: simpler model routing, BYOK through the dashboard, improved streaming handling. We'll write about those when they ship.
Docs: quickstart, API keys, credits.
Got questions? Join our Discord.