All models are self-hosted on Salist Labs infrastructure.
Get an API key from @mahanq on Telegram.
OpenAI-compatible API — use any SDK or client that supports OpenAI format.
All models listed above are self-hosted you get direct access without third-party dependencies.
The API is fully OpenAI-compatible. You can use it with any OpenAI SDK or client library — just change the base URL and API key.
Contact us on Telegram to get your API key: t.me/mhanq
Model IDs are derived from nicknames: lowercase, no spaces. For example:
deepseekv4flash
Use any OpenAI-compatible SDK or make direct HTTP requests:
curl https://api.slgo.ir/v1/chat/completions \
-H "Authorization: Bearer salist-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 1024
}'
from openai import OpenAI
client = OpenAI(
api_key="salist-YOUR_KEY",
base_url="https://api.slgo.ir/v1"
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Your information is securely stored with us and will never be shared with any third party without your consent. Salist Labs 2024-2026