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):
| Field | Value |
|---|---|
| Base URL | https://api.nexotao.com/v1 |
| API Key | sk-nexo-... |
| Header | Authorization: Bearer sk-nexo-... |
| Model | gpt-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):
| Field | Value |
|---|---|
| Base URL | https://api.nexotao.com |
| API Key | sk-nexo-... |
| Header | x-api-key: sk-nexo-... |
| Model | claude-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.
- Unknown model? Match the ID exactly from Models & Pricing.
401? Bad/revoked key — create a new one in the dashboard. See Authentication.- Need the full error list? See the API Reference.
Usage is billed from your Rupiah balance per token. See Billing & Pricing.