AI1API · Open API

AI1API provides an OpenAI-compatible API at https://ai1api.com/v1. Replace the client API key and Base URL to connect.

curl https://ai1api.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-sol",
    "messages": [{"role":"user","content":"Hello"}]
  }'