Responses API
/v1/responses is intended for models and clients that support the OpenAI Responses protocol, including Codex configured with wire_api = "responses".
Request example
bash
curl https://ai.akaii.top/v1/responses \
-H "Authorization: Bearer $AKAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MODEL_ID_FROM_CONSOLE",
"input": "Return the word ready."
}'Before use, confirm that the model supports Responses, the key group contains that model, and the Base URL is https://ai.akaii.top/v1.
If a model only supports Chat Completions, use /v1/chat/completions with its corresponding request shape.