Skip to content

Client Integration Overview

Don't want to write code? Most mainstream AI clients support a "custom OpenAI API endpoint". Fill in two things and you can use all the platform's models:

  1. API base URL: https://gateway.mindproxy.ai/v1
  2. API key: the sk-... you created in the console

General rule

The platform exposes an OpenAI-compatible API. Any client that supports a custom OpenAI API address works the same way: set the address to /v1, the key to your sk-..., and the model to a supported model ID. Per-client specifics are below.

Per-client guides

ClientPlatformGood for
Cherry StudioWin / Mac / Linux desktopFull-featured, multi-model, knowledge base
ChatBoxDesktop / mobile / webSimple to start
NextChatWeb / desktopSelf-hostable, lightweight
CursorCode editorAI coding
Open WebUISelf-hosted webTeam sharing, on-prem

Does the base URL need /v1?

Clients handle the address differently — this is the most common gotcha:

  • Most clients want the "API address / API host" set to https://gateway.mindproxy.ai/v1.
  • A few clients append /v1 automatically, so you only fill https://gateway.mindproxy.ai.
  • If a call returns 404 or "path not found", /v1 is usually one too many or one too few — adjust it.

What model name to use

Use a public model ID the platform supports, e.g. gpt-4o-mini, claude-3-5-sonnet, gemini-1.5-pro.

Common troubleshooting

SymptomLikely cause
401 UnauthorizedWrong key / extra whitespace / key disabled
404 Not found/v1 is one too many or too few in the base URL
Model unavailable / 403Model not in the key's scope, or model ID typo
402Out of balance or over the key's monthly limit — see Recharge
429Rate limited, retry later

More in Errors & rate limits.

Gateway: gateway.mindproxy.ai · Built with VitePress