model
gpt-5.2-codex
gpt-5.2-pro
gpt-5.3-codex
gpt-5.4-pro
Authorization: Bearer ********************
{ "model": "gpt-5.6-sol", "input": "你好" }
curl --location 'https://api.firemux.com/v1/responses' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "model": "gpt-5.6-sol", "input": "你好" }'
{ "id": "resp_xxx", "object": "response", "status": "completed", "model": "gpt-5.6-sol", "output": [ { "type": "message", "role": "string", "content": [ { "type": "string", "text": "你好!" } ] } ], "usage": { "input_tokens": 12, "output_tokens": 30, "total_tokens": 42 } }