状态: 运行中
版本: Production v3.0 - 支持23个最新AI模型
API密钥: 已配置 (环境变量)
基础URL: https://api.autoschool.eu.org
GET /v1/models
curl -X GET "https://api.autoschool.eu.org/v1/models" \ -H "Authorization: Bearer YOUR_API_KEY"
POST /v1/chat/completions
curl -X POST "https://api.autoschool.eu.org/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5",
"messages": [{"role": "user", "content": "Hello"}],
"stream": false
}'