Integrations
Plug VibeCC into your favorite agent
Drop-in setup for nine coding agents. One API key, one base URL.
Pick the agent you use. Snippets render with placeholder values for safe copy.
Replace {{BASE_URL}} with the VibeCC gateway URL and {{API_KEY}} with the key issued in your dashboard.
Environment variables
export ANTHROPIC_BASE_URL="https://gateway.vibecc.viettk.com"
export ANTHROPIC_AUTH_TOKEN="{{API_KEY}}"Configuration file — ~/.claude/settings.json
{
"env": {
"ANTHROPIC_BASE_URL": "https://gateway.vibecc.viettk.com",
"ANTHROPIC_AUTH_TOKEN": "{{API_KEY}}"
}
}
Curl example
curl -X POST "https://gateway.vibecc.viettk.com/v1/messages" \
-H "x-api-key: {{API_KEY}}" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
-d '{
"model": "claude-3-5-sonnet-20241022",
"max_tokens": 256,
"messages": [{"role": "user", "content": "Hello"}]
}'