OrtaloPlatform

API

Manage API keys, access endpoints, and models

API Base URLhttps://ortalo.online/api/v1

API Key

NameKeyCreatedLast used
Loading API keys...

Models

ModelInputOutput
Loading models...

Examples

Shell
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
  }'