Big Pickle is opencode-ai's free smoke-test model served on the OpenCode Zen gateway. Used by the opencode CLI to verify connectivity and exercise the inference path; accepts anonymous requests. Not intended for production workloads.
Upstream Providers
ZDR only
OpenCode Zen
opencode-zen
In$0Out$0Free
No ZDR
API Details
Chat Completions API
/api/v1/chat/completions
OpenAI-compatible endpoint with a messages array. Standard interface for chat-based interactions.
Uptime & Health
No uptime data yet
These providers haven't been health-probed for this model yet. The router still routes around upstreams that fail live requests — uptime fills in once probe history accrues.
Code samplesall endpoints & SDKs
POST /api/v1/chat/completions
curl https://anyrouter.dev/api/v1/chat/completions \
-H "Authorization: Bearer $ANYROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "opencode/big-pickle",
"messages": [
{"role": "user", "content": "Say hi in 3 words."}
]
}'No API key yetSet
ANYROUTER_API_KEY — Dashboard → KeysRequest examplereflects the filters above
{
"model": "opencode/big-pickle",
"messages": [
{
"role": "user",
"content": "Say hi in 3 words."
}
]
}Change sort, ZDR, effort, or pin a provider to add routing params.