OpenAI-compatible API with free model routing
/v1/chat/completions
/v1/models
curl -X POST https://api-endpoint.aidevspace.online/v1/chat/completions \
-H "Authorization: Bearer sk-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openrouter/free",
"messages": [{"role": "user", "content": "Hello!"}]
}'