Different AI providers have different API formats. Anyone converts between them automatically, so you don’t need to worry about which provider is used on the backend.
How it works
You only need to send requests in one format — Anyone automatically converts to whatever format the target model requires.
For example, calling a Claude model with the OpenAI SDK:
You send an OpenAI-format request, and Anyone converts it to Claude Messages format behind the scenes, sends it to Anthropic, then converts Claude’s response back to OpenAI format before returning it to you. The whole process is completely transparent.
Supported conversions
We recommend using the OpenAI format — it works with all models and is the most versatile option. You only need a provider’s native format if you specifically need one of their unique features.
If you’re already using the Anthropic SDK or Google Gemini SDK, you can point them directly at Anyone:
Both approaches work — use whichever SDK you prefer.