diff --git a/docs/customize/model-providers/more/minirouter.mdx b/docs/customize/model-providers/more/minirouter.mdx
new file mode 100644
index 00000000000..11625d2d1df
--- /dev/null
+++ b/docs/customize/model-providers/more/minirouter.mdx
@@ -0,0 +1,56 @@
+---
+title: "How to Configure minirouter with Continue"
+sidebarTitle: "minirouter"
+---
+
+
+ Get a prepaid, accountless API key at [minirouter](https://minirouter.sh/key).
+
+
+minirouter is an OpenAI-compatible gateway with one key for the Vercel AI
+Gateway catalog.
+
+## Configuration
+
+
+
+ ```yaml title="config.yaml"
+ name: My Config
+ version: 0.0.1
+ schema: v1
+
+ models:
+ - name: Llama 3.3 70B (minirouter)
+ provider: openai
+ model: meta/llama-3.3-70b
+ apiBase: https://api.minirouter.sh/v1
+ apiKey:
+ roles:
+ - chat
+ - edit
+ - apply
+ ```
+
+
+ ```json title="config.json"
+ {
+ "models": [
+ {
+ "title": "Llama 3.3 70B (minirouter)",
+ "provider": "openai",
+ "model": "meta/llama-3.3-70b",
+ "apiBase": "https://api.minirouter.sh/v1",
+ "apiKey": "",
+ "roles": ["chat", "edit", "apply"]
+ }
+ ]
+ }
+ ```
+
+
+
+Model IDs use `/`. See the [full model list and
+prices](https://minirouter.sh/docs/models), or send `GET https://api.minirouter.sh/v1/models`.
+
+Streaming, tool calling, and `max_completion_tokens` are supported on every
+model that advertises them.
diff --git a/docs/customize/model-providers/overview.mdx b/docs/customize/model-providers/overview.mdx
index 7ba030dcb4d..1019c5e2230 100644
--- a/docs/customize/model-providers/overview.mdx
+++ b/docs/customize/model-providers/overview.mdx
@@ -34,6 +34,7 @@ Beyond the top-level providers, Continue supports many other options:
| [Together AI](/customize/model-providers/more/together) | Platform for running a variety of open models |
| [DeepInfra](/customize/model-providers/more/deepinfra) | Hosting for various open source models |
| [OpenRouter](/customize/model-providers/top-level/openrouter) | Gateway to multiple model providers |
+| [minirouter](/customize/model-providers/more/minirouter) | OpenAI-compatible gateway with prepaid, accountless keys |
| [ClawRouter](/customize/model-providers/more/clawrouter) | Open-source LLM router with automatic cost-optimized model selection |
| [Tetrate Agent Router Service](/customize/model-providers/top-level/tetrate_agent_router_service) | Gateway with intelligent routing across multiple model providers |
| [Cohere](/customize/model-providers/more/cohere) | Models specialized for semantic search and text generation |
diff --git a/docs/docs.json b/docs/docs.json
index b7a1d83f13a..7dfc8868165 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -113,6 +113,7 @@
"customize/model-providers/more/llamacpp",
"customize/model-providers/more/llamastack",
"customize/model-providers/more/mimo",
+ "customize/model-providers/more/minirouter",
"customize/model-providers/more/mistral",
"customize/model-providers/more/moonshot",
"customize/model-providers/more/nous",