OrtaloPlatform
API
Manage API keys, access endpoints, and models
API Base URL
https://ortalo.online/api/v1API Key
| Name | Key | Created | Last used | |
|---|---|---|---|---|
Loading API keys... | ||||
Models
| Model | Input | Output | |
|---|---|---|---|
Loading models... | |||
Examples
curl -X POST "https://ortalo.online/api/v1/chat/completions" -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{
"model": "deepseek-v4-flash",
"messages": [
{
"role": "user",
"content": "Hello World"
}
],
"stream": true,
"temperature": 0.7,
"max_tokens": 1000
}'