Quick Example
Base URL
Authentication
Use your Personal API Key as the bearer token. See Manage API Key for details.Available Models
gpt-4o-mini- GPT-4 Optimized Minigpt-5-mini- GPT-5 Mini
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST https://relytone.data.cloud/api/v1/llm-proxy/v1/chat/completions \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Introduce yourself."
}
]
}'
from openai import OpenAI
client = OpenAI(
api_key="<token>",
base_url="https://relytone.data.cloud/api/v1/llm-proxy/v1/"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Introduce yourself."
}
]
)
print(response.choices[0].message.content)
https://relytone.data.cloud/api/v1/llm-proxy/v1/
gpt-4o-mini - GPT-4 Optimized Minigpt-5-mini - GPT-5 MiniWas this page helpful?