Frontier and open models, all through one API. Prices per 1M tokens.
Send your first request in minutes. Try free models without a credit card.
Create an account to get started. You can set up an org for your team later.
Credits can be used with any model or provider.
Create an API key and start making requests. Fully OpenAI compatible.
Reach every major provider through a single OpenAI-compatible endpoint.
Automatic fallbacks keep you running when a provider goes down.
Requests are routed automatically to the cheapest, fastest provider.
Control which providers can see your data with fine-grained policies.
Sothe is fully compatible with the OpenAI SDK. Just change the base_url and your API key.
1from openai import OpenAI23client = OpenAI(4 base_url="https://api.sothe.net/v1",5 api_key="<SOTHE_API_KEY>",6)78completion = client.chat.completions.create(9 model="anthropic/claude-sonnet-5",10 messages=[11 {"role": "user", "content": "What is the meaning of life?"}12 ],13)1415print(completion.choices[0].message.content)Experiment with free models, then scale when you are ready.