What's the difference between Anyone and using OpenAI/Claude directly?
What's the difference between Anyone and using OpenAI/Claude directly?
Anyone aggregates 40+ AI providers. You only need one API key to call all models — no need to register separately with OpenAI, Anthropic, Google, etc. Plus, Anyone automatically handles format conversion, so you can use the OpenAI SDK to call Claude and Gemini.
Does it support the OpenAI Python/JavaScript SDK?
Does it support the OpenAI Python/JavaScript SDK?
Fully supported. Just set All features supported by the OpenAI SDK (chat completions, streaming, function calling, etc.) work out of the box.
base_url and api_key:Can I call Claude using the OpenAI format?
Can I call Claude using the OpenAI format?
Yes. Send a standard
/v1/chat/completions request with the model set to a Claude model name like claude-sonnet-4-6. Anyone automatically converts the request to Claude Messages format and converts the response back to OpenAI format.The reverse also works — Anyone’s /v1/messages endpoint supports the native Claude format.Does it support streaming?
Does it support streaming?
Yes. Set Responses are returned in real time using SSE (Server-Sent Events) format.
"stream": true in your request:Does it support function calling / tool use?
Does it support function calling / tool use?
Yes. Pass the
tools parameter in your request, exactly as you would with OpenAI. Anyone automatically converts tool calling to the format supported by the target model.What if I forget my password?
What if I forget my password?
Click Forgot password on the login page and follow the instructions to reset it.
What if my token is leaked?
What if my token is leaked?
Immediately log in to the dashboard and delete the token, then create a new one. A deleted token is invalidated instantly.
What models are available?
What models are available?
Call the You can also check the models page in the dashboard.
/v1/models endpoint for the full list:Which client tools are supported?
Which client tools are supported?
Any tool compatible with the OpenAI API works, including:
- Cherry Studio — set the base URL to
https://api.anyone.ai/v1 - LangChain / LlamaIndex — change the base URL in the configuration
- Vercel AI SDK — use the OpenAI provider and change the base URL
- Cursor / Continue — set a custom API endpoint
- And any other tool that supports a custom OpenAI endpoint
How do I debug a failed request?
How do I debug a failed request?
See the troubleshooting page for common error codes and solutions.

