Get access
Choose the route that fits your case. The API is the same for all of them.
OpenRouter
Serenity Edge is available as a provider on OpenRouter. Select the "Serenity Edge" provider when routing your requests and use your OpenRouter account for billing.
Go to OpenRouterSerenity Star account
Create a Serenity Star account to get API keys and buy credits. This is the direct route for teams and developers.
Go to Serenity StarEnterprise
For volume, specific terms or service level agreements we work under contract. SLAs are only offered under contract.
Contact usGetting started
Point your client at the base URL and use your API key. Model identifiers are on the models page.
- Base URL
https://api.serenityedge.ai/v1
from openai import OpenAI
client = OpenAI(
base_url="https://api.serenityedge.ai/v1",
api_key="YOUR_SERENITY_EDGE_API_KEY",
)
response = client.chat.completions.create(
model="orion-plus",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)