Base URL
https://api.corenode.best/v1
This page is a crawlable documentation surface for CoreNode. It gives search engines and developers a stable reference for the base URL, auth format, and the first request to make.
https://api.corenode.best/v1
Authorization: Bearer YOUR_API_KEY
Query this endpoint first to confirm which Claude models are visible to your account before you send production traffic.
OpenAI-compatible chat completions endpoint for most existing SDK integrations and internal tools.
curl https://api.corenode.best/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"claude-sonnet-4-5-20250929","messages":[{"role":"user","content":"Hello"}]}'Create an API key in the CoreNode console.
Replace your base URL with https://api.corenode.best/v1.
Call /v1/models first, then switch to the Claude model you want to use.
Create an API key in the console, switch your base URL to https://api.corenode.best/v1, and keep your OpenAI-compatible request flow intact.
It shows the exact model names visible to your account, which makes validation and debugging much faster before real traffic starts.
CoreNode works with OpenAI SDK clients, Claude Code, CC Switch, and direct HTTP integrations that expect a standard API endpoint.