Solunce Solunce
Open chat
API Keys
Create new key
Copy your key now — it won't be shown again after you leave this page.
Your keys
Loading…
Using your key
Base URL
https://api.solunce.com/v1
Auth header
Authorization: Bearer YOUR_KEY
Available models
solusx6 Free apollo Plus
cURL
Python
Node.js
API Keys
Drop-in OpenAI replacement. Two models, zero friction.

Sign in to create API keys

You need a Solunce account to generate and manage keys.

Sign in
Quick start
cURL
Python
Node.js
export SOLUNCE_KEY="sk-sai-..." curl https://api.solunce.com/v1/chat/completions \ -H "Authorization: Bearer $SOLUNCE_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "solusx6", "messages": [{"role":"user","content":"Hello"}] }'
from openai import OpenAI client = OpenAI(api_key="sk-sai-...", base_url="https://api.solunce.com/v1") response = client.chat.completions.create( model="solusx6", messages=[{"role": "user", "content": "Hello"}] ) print(response.choices[0].message.content)
import OpenAI from "openai"; const client = new OpenAI({ apiKey: "sk-sai-...", baseURL: "https://api.solunce.com/v1" }); const res = await client.chat.completions.create({ model: "solusx6", messages: [{ role: "user", content: "Hello" }], }); console.log(res.choices[0].message.content);

Ready to build?

Free tier includes Solus X6. Solunce Plus adds Apollo 1 with no daily limits.

Create free account View pricing