メインコンテンツへスキップ
更新日: 2026-06-06

Responses API Overview

The Responses API is currently one of the main routes for newer GPT capabilities on Crazyrouter. This page only documents conclusions that were revalidated against production on 2026-03-22.
In the current production-verified scope, Claude supports only POST /v1/messages and POST /v1/chat/completions, not POST /v1/responses. Treat the Responses pages as GPT-first guidance.

Current framing

  • If you need inspectable reasoning output, prefer /v1/responses
  • If you need OpenAI-style web search, prefer /v1/responses
  • If you only need ordinary chat or want to keep an existing integration, /v1/chat/completions is still fine

Responses API vs Chat Completions API


Smallest useful example

Python
In the current production recheck, this kind of minimal request returned:

When to prefer Responses

  • You need gpt-5.5 reasoning summaries
  • You need to verify whether the model actually triggered web_search_call
  • You want richer SSE events
Related pages:

When to keep Chat Completions

  • You already have a stable Chat Completions integration
  • You only care about the final answer, not the reasoning item
  • You are integrating Claude, Gemini, or other OpenAI-compatible models
Both APIs can coexist in the same project. In practice, the better pattern is usually not a full migration, but moving only the requests that need newer capabilities onto /v1/responses.