> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# o3 Pro

> o3 Pro: reasoning model for complex problem solving. Request examples and parameters for MixRoute.

o3 Pro is a reasoning model for complex problem solving from OpenAI.

Call `o3-pro` through MixRoute using the endpoint shown below.

## Key capabilities

* Responses API - Uses input for text and structured content
* Reasoning control - Configure reasoning effort on supported models
* Tool use - Supports function and hosted tool definitions

## Quick example

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.mixroute.ai/v1/responses" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
      "model": "o3-pro",
      "input": [
        {
          "role": "user",
          "content": "Explain quantum entanglement in simple terms."
        }
      ],
      "max_output_tokens": 256,
      "reasoning": {
        "effort": "low"
      }
    }'
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    from openai import OpenAI

    client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai/v1")

    response = client.responses.create(
        model="o3-pro",
        input="Explain quantum entanglement in simple terms.",
        reasoning={"effort": "low"},
        max_output_tokens=256,
    )

    print(response.output_text)
    ```
  </Tab>

  <Tab title="Streaming">
    ```python theme={null}
    from openai import OpenAI

    client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai/v1")

    with client.responses.stream(
        model="o3-pro",
        input="Write a short poem about the sea.",
        reasoning={"effort": "low"},
        max_output_tokens=256,
    ) as stream:
        for event in stream:
            if event.type == "response.output_text.delta":
                print(event.delta, end="")
    ```
  </Tab>
</Tabs>

## Parameters

| Parameter           | Type            | Required | Description                                |
| ------------------- | --------------- | -------- | ------------------------------------------ |
| `model`             | string          | Yes      | Must be `o3-pro`.                          |
| `input`             | string \| array | Yes      | Text or structured response input.         |
| `max_output_tokens` | integer         | No       | Maximum output tokens.                     |
| `stream`            | boolean         | No       | Enable SSE streaming. Default: false.      |
| `reasoning`         | object          | No       | Reasoning configuration, including effort. |
| `tools`             | array           | No       | Tools the model may call.                  |
| `store`             | boolean         | No       | Whether to store the response.             |
