OpenAI-compatibleOpenAI-compatible chat
Call gemini through the OpenAI-compatible /chat/completions surface.
Endpoint
POST /api/v1/chat/completionsModelgeminiCost$0.05/requestcurl --request POST \
--url https://apiin.one/api/v1/chat/completions \
--header 'Authorization: Bearer $APIINONE_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini",
"messages": [
{
"role": "user",
"content": "Explain quantum computing in simple terms."
}
],
"stream": false,
"include_thoughts": true
}'


