Create a Response
Generate model output with the OpenAI-compatible Responses API.
Use the Responses API shape for text or structured model input and a unified output object.
POST
/openai/v1/responsesRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
model | string | Yes | Model identifier routed by AnyInt. |
input | string or array | Yes | Text or structured input items. |
stream | boolean | No | Return server-sent events when supported. |
Response
A completed request returns a response object with an identifier, status, and generated output.
Compatibility Alias
Existing clients may continue to use /v1/responses. New integrations should use /openai/v1/responses.