Documentation

FAQ: What base URL should I use? in the NexoRouter documentation.

FAQ: What base URL should I use?

Use:

https://api.nexorouter.com/v1

Most SDKs and tools want the base URL only up to /v1.

Correct

https://api.nexorouter.com/v1

Common mistakes

Do not use the official OpenAI API URL:

https://api.openai.com/v1

Do not put a full endpoint into the base URL field unless the tool explicitly asks for one:

https://api.nexorouter.com/v1/chat/completions

Confirm it works

curl https://api.nexorouter.com/v1/models \
  -H "Authorization: Bearer $NEXOROUTER_API_KEY"

If this returns model data, the base URL and API key are basically correct.

FAQ: What base URL should I use? — NexoRouter