Bridge Claude Code, Gemini, Codex, or GitHub Copilot into any app that speaks the OpenAI format. No API keys. No extra billing.
Then run bridgerapi for the interactive setup wizard
How it works
bridgerapi runs locally and translates between the OpenAI API format and whichever CLI you have logged in.
Setup
Run bridgerapi and the wizard handles everything.
Backends
bridgerapi detects whichever CLIs are installed and routes requests automatically.
Connect
Anything that supports OpenAI-compatible endpoints works out of the box.
GOOSE_PROVIDER: openai
GOOSE_MODEL: claude-sonnet-4-6
OPENAI_HOST: http://127.0.0.1:8082
{
"provider": "openai",
"apiBase": "http://127.0.0.1:8082/v1",
"apiKey": "local"
}
OpenAI API Base URL:
http://127.0.0.1:8082/v1
API Key: local
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'http://127.0.0.1:8082/v1',
apiKey: 'local'
})