API 文档
接口地址
/v1curl /v1/models -H "authorization: Bearer $FLOWAPI_KEY"
聊天接口
curl -X POST /v1/chat/completions \
-H "authorization: Bearer $FLOWAPI_KEY" \
-H "content-type: application/json" \
-d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"hello"}],"stream":false}'Responses 接口
curl -N -X POST /v1/responses \
-H "authorization: Bearer $FLOWAPI_KEY" \
-H "content-type: application/json" \
-d '{"model":"gpt-5.5","input":"hello","stream":true}'使用 FlowAPI API Key 调用。