Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions v3/integrations/claude-code.mdx
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
---
title: "Claude Code"
icon: "/integration-logo/claude-ai-icondoc.svg"
description: "Configure Claude Code, Anthropic's official CLI coding agent, to use Eden AI for access to 500+ models behind a single API key."

Check warning on line 4 in v3/integrations/claude-code.mdx

View check run for this annotation

Mintlify / Mintlify Validation (edenai) - vale-spellcheck

v3/integrations/claude-code.mdx#L4

Did you really mean 'Anthropic's'?
---

import { TechArticleSchema } from "/snippets/TechArticleSchema.mdx";

<TechArticleSchema
title={"Claude Code"}
description={"Configure Claude Code, Anthropic's official CLI coding agent, to use Eden AI for access to 500+ models behind a single API key."}

Check warning on line 11 in v3/integrations/claude-code.mdx

View check run for this annotation

Mintlify / Mintlify Validation (edenai) - vale-spellcheck

v3/integrations/claude-code.mdx#L11

Did you really mean 'Anthropic's'?
path="v3/integrations/claude-code"
articleSection="Coding Agents"
about={"AI Coding Assistants"}
proficiencyLevel="Intermediate"
keywords={["Eden AI", "AI API", "Claude Code"]}
datePublished="2026-05-06T00:00:00Z"
dateModified="2026-05-07T00:00:00Z"
dateModified="2026-07-03T00:00:00Z"
/>

Configure [Claude Code](https://github.com/anthropics/claude-code), Anthropic's official CLI coding agent, to use Eden AI for access to 500+ models behind a single API key.
Expand All @@ -26,7 +26,7 @@

- **500+ models**: switch between Claude, GPT, Gemini, and more without reinstalling
- **One API key**: unified billing and monitoring across providers
- **Provider failover**: keep working when an upstream provider has an incident

Check warning on line 29 in v3/integrations/claude-code.mdx

View check run for this annotation

Mintlify / Mintlify Validation (edenai) - vale-spellcheck

v3/integrations/claude-code.mdx#L29

Did you really mean 'failover'?

## Prerequisites

Expand All @@ -50,14 +50,14 @@
```powershell PowerShell
$env:ANTHROPIC_API_KEY = "YOUR_EDEN_AI_API_KEY"
$env:ANTHROPIC_BASE_URL = "https://api.edenai.run/v3"
$env:ANTHROPIC_MODEL = "anthropic/claude-opus-4.7"
$env:ANTHROPIC_MODEL = "anthropic/claude-opus-4-7"
$env:ANTHROPIC_DEFAULT_HAIKU_MODEL="anthropic/claude-haiku-4-5"
$env:ANTHROPIC_DEFAULT_SONNET_MODEL="anthropic/claude-sonnet-4-6"
$env:ANTHROPIC_DEFAULT_OPUS_MODEL="anthropic/claude-opus-4-7"
```
</CodeGroup>

To make it permanent, add the `export` lines to `~/.bashrc` or `~/.zshrc` and reload your shell.

Check warning on line 60 in v3/integrations/claude-code.mdx

View check run for this annotation

Mintlify / Mintlify Validation (edenai) - vale-spellcheck

v3/integrations/claude-code.mdx#L60

Did you really mean 'zsh'?

### 2. Launch Claude Code

Expand Down
Loading