English
  • English
  • 简体中文
  1. OpenAI
English
  • English
  • 简体中文
  • Introduction (Must Read)
  • OpenAI official library usage tutorial
  • Obtain Base URL and API Key
  • OpenAI
    • Chat
      POST
    • Chat (o1,o3,o4 series model)
      POST
    • dall--e-3
      POST
    • gpt-image-1
      POST
    • Image edit
      POST
    • Analyze image
      POST
    • Analyze PDF
      POST
    • o3-pro
      POST
  • Gemini
    • gemini
      POST
  1. OpenAI

o3-pro

Developing
POST
{{base_url}}/v1/responses
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{base_url}}/v1/responses' \
--header 'Authorization: sk-shdahd【You ApiKey】' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "o3-pro",
    "messages": [
        {
            "role": "user",
            "content": "hello"
        }
    ],
    "stream": false
}'
Response Response Example
{}

Request

Header Params

Body Params text/plain
Examples

Responses

🟢200成功
application/json
Body

Modified at 2025-06-27 14:15:29
Previous
Analyze PDF
Next
gemini
Built with