Any Other Tool
CursorOpenAI SDKAnthropic SDKMode: OpenAI-compatible & Anthropic

Any Other Tool (Universal)

Don’t see your tool listed? As long as it can be pointed at a custom base URL and accepts an API key, it works with Nexotao. The principle is always the same: swap the base URL + key, then pick a model.

The universal pattern

OpenAI-compatible (for gpt/grok/deepseek, and Claude, and most tools):

FieldValue
Base URLhttps://api.nexotao.com/v1
API Keysk-nexo-...
HeaderAuthorization: Bearer sk-nexo-...
Modelgpt-5.6-terra, grok-4.3, DeepSeek-V4-Pro, DeepSeek-V4-Flash, claude-opus-4-8

The OpenAI-compatible endpoint accepts every model, including Claude — so if your tool speaks OpenAI, just use this pattern for all of them. See Endpoints & Formats.

Anthropic-compatible (optional — native Anthropic bodies only):

FieldValue
Base URLhttps://api.nexotao.com
API Keysk-nexo-...
Headerx-api-key: sk-nexo-...
Modelclaude-opus-5, claude-opus-4-8, claude-opus-4-7, claude-opus-4-6, claude-sonnet-4-6

Examples

from openai import OpenAI
 
client = OpenAI(base_url="https://api.nexotao.com/v1", api_key="sk-nexo-...")
resp = client.chat.completions.create(
    model="gpt-5-mini",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

Cursor & cloud-based tools

Some tools (e.g. Cursor) route requests through their own servers, so a custom base URL may be limited or unavailable. Check whether the tool offers an “Override OpenAI Base URL” / “Custom API key” option. If it does, fill it with the OpenAI-compat pattern above. If not, that tool can’t be used with Nexotao yet.

Troubleshooting checklist

⚠️

The most common cause is the /v1 suffix. OpenAI-compat needs /v1; Anthropic-compat is without /v1.

Usage is billed from your Rupiah balance per token. See Billing & Pricing.