API Documentation
Helyx AI provides a drop-in replacement for the OpenAI API. Just change your Base URL and API Key!
Base URL
https://helyxai.space/v1
Chat Completions via cURL
curl https://helyxai.space/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-YOUR_API_KEY" \
-d '{
"model": "helyx-standard",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}'