diff --git a/docs/customize/model-providers/more/claudexia.mdx b/docs/customize/model-providers/more/claudexia.mdx
new file mode 100644
index 00000000000..6cc21951edb
--- /dev/null
+++ b/docs/customize/model-providers/more/claudexia.mdx
@@ -0,0 +1,114 @@
+---
+title: "Claudexia"
+description: "Configure Claudexia with Continue — a pay-per-token Claude API gateway with OpenAI- and Anthropic-compatible endpoints"
+---
+
+
+ [Claudexia](https://claudexia.tech) is a pay-per-token gateway to Claude (and other frontier models) with OpenAI- and Anthropic-compatible APIs. Get an API key from the [Claudexia dashboard](https://claudexia.tech).
+
+
+Claudexia exposes an OpenAI-compatible endpoint at `https://api.claudexia.tech/v1`, so you can use it with Continue via the `openai` provider by setting `apiBase`.
+
+## Chat Model
+
+
+
+ ```yaml title="config.yaml"
+ name: My Config
+ version: 0.0.1
+ schema: v1
+
+ models:
+ - name: Claude Sonnet 4.6 (Claudexia)
+ provider: openai
+ model: claude-sonnet-4-6
+ apiKey:
+ apiBase: https://api.claudexia.tech/v1
+ ```
+
+
+ ```json title="config.json"
+ {
+ "models": [
+ {
+ "title": "Claude Sonnet 4.6 (Claudexia)",
+ "provider": "openai",
+ "model": "claude-sonnet-4-6",
+ "apiKey": "",
+ "apiBase": "https://api.claudexia.tech/v1"
+ }
+ ]
+ }
+ ```
+
+
+
+## Available Models
+
+Claudexia routes to Anthropic's Claude family and other frontier models. Common model IDs:
+
+- `claude-opus-4-7`
+- `claude-sonnet-4-6`
+- `claude-haiku-4-5`
+- `gpt-5.5`
+
+See the full list at [claudexia.tech](https://claudexia.tech).
+
+## Multiple Models
+
+
+
+ ```yaml title="config.yaml"
+ name: My Config
+ version: 0.0.1
+ schema: v1
+
+ models:
+ - name: Claude Opus 4.7
+ provider: openai
+ model: claude-opus-4-7
+ apiKey:
+ apiBase: https://api.claudexia.tech/v1
+ roles:
+ - chat
+ - edit
+
+ - name: Claude Haiku 4.5
+ provider: openai
+ model: claude-haiku-4-5
+ apiKey:
+ apiBase: https://api.claudexia.tech/v1
+ roles:
+ - autocomplete
+ - apply
+ ```
+
+
+ ```json title="config.json"
+ {
+ "models": [
+ {
+ "title": "Claude Opus 4.7",
+ "provider": "openai",
+ "model": "claude-opus-4-7",
+ "apiKey": "",
+ "apiBase": "https://api.claudexia.tech/v1",
+ "roles": ["chat", "edit"]
+ },
+ {
+ "title": "Claude Haiku 4.5",
+ "provider": "openai",
+ "model": "claude-haiku-4-5",
+ "apiKey": "",
+ "apiBase": "https://api.claudexia.tech/v1",
+ "roles": ["autocomplete", "apply"]
+ }
+ ]
+ }
+ ```
+
+
+
+
+ Sign up and grab an API key at [claudexia.tech](https://claudexia.tech). Pay-per-token billing supports SBP, card, and USDT — no VPN required.
+
diff --git a/docs/customize/model-providers/overview.mdx b/docs/customize/model-providers/overview.mdx
index 7ba030dcb4d..e316719c4b1 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 |
+| [Claudexia](/customize/model-providers/more/claudexia) | Pay-per-token Claude API gateway, OpenAI/Anthropic-compatible |
| [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 8556401ffc6..626871565ba 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -169,6 +169,7 @@
"group": "More Providers",
"pages": [
"customize/model-providers/more/asksage",
+ "customize/model-providers/more/claudexia",
"customize/model-providers/more/clawrouter",
"customize/model-providers/more/deepseek",
"customize/model-providers/more/deepinfra",