Skip to content

IDE Integration Overview

Any API is compatible with the OpenAI API format. Simply replace the API endpoint with your Any API URL to integrate with various AI coding tools.

Supported AI Coding Tools

ToolTypeDescription
CursorAI Code EditorAI-first code editor with built-in AI features
ClineVS Code ExtensionAutonomous coding assistant that reads and modifies project files
ContinueVS Code / JetBrains ExtensionOpen-source AI coding assistant supporting multiple IDEs
WindsurfAI Code EditorAI editor by Codeium
PyCharmJetBrains IDETop Python development IDE

Claude Code CLI Configuration

In addition to IDE integration, you can also use Claude Code CLI directly:

1. Install the Extension

  1. Open VS Code and press Ctrl+Shift+X (Windows) or Cmd+Shift+X (Mac)
  2. Search for "Claude Code for VS Code"
  3. Install the extension published by Anthropic

2. Configure the Gateway

Edit the config file:

  • Windows: C:\Users\YourUsername\.claude\config.json
  • Mac: ~/.claude/settings.json

Configuration:

json
{
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "Replace with your API Key",
    "ANTHROPIC_BASE_URL": "https://anyapi.pro",
    "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1
  },
  "permissions": {
    "allow": [],
    "deny": []
  }
}

WARNING

Replace the ANTHROPIC_AUTH_TOKEN value with your own API Key.

Best Practices

TipDescription
Start from project rootLet Claude Code read project files for more accurate suggestions
Use /help commandView all available slash commands and features
Use /clear commandClear context to start a new conversation (reduces token usage)
Use @file referencesUse @filename in conversations to quickly reference project files
Back up important filesClaude Code can modify files directly; use Git for version control

API PLAT