chomp.

OpenAI-compatible proxy for free LLM providers.
Bring your keys. We route the rest.

Tutorial
Send your first prompt
5 minutes. BYO OpenRouter key.
MCP
Install as MCP server
Claude Desktop, Cursor, any MCP client.
Guides
Agent tool, self-host, more
Use as a tool, install on exe.dev, fan out prompts.
Reference
API Reference
Every endpoint, parameter, and error code.
Quick taste
# get a chomp token (bring your OpenRouter key)
curl -X POST https://chomp.coey.dev/api/keys \
  -H "Content-Type: application/json" \
  -d '{"openrouter_key": "sk-or-your-key"}'

# dispatch a prompt to a free model
curl -X POST https://chomp.coey.dev/api/dispatch \
  -H "Authorization: Bearer $CHOMP_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Explain quicksort in 3 sentences."}'

# poll for the result
curl https://chomp.coey.dev/api/result/$JOB_ID \
  -H "Authorization: Bearer $CHOMP_TOKEN"