Gemini 2.5 Flash & Pro now available
One API.
All leading AI models.
Stop juggling API keys and protocols. Access OpenAI, Anthropic, Google, and DeepSeek through a single, unified interface. No subscriptions, pay as you go.
Aggregating the world's leading AI providers
xA
Start in 3 Lines of Code
Fully compatible with OpenAI SDK. Just change the base URL.
from openai import OpenAI
client = OpenAI(
base_url="https://api.cherryin.ai/v1",
api_key="sk-your-api-key"
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)