Responses API
Execute modern OpenAI Responses API calls with structured outputs and automated state tracking.
Responses API
POST/v1/responses
Inference Key (Bearer zrv_...)
The Responses API provides a simplified, conversation-first interface for generating answers, multi-modal reasoning, and tool calls.
Inference Key TesterInteractive
Paste your Zorveus key to dynamically update all code snippets below.
Code Example
from openai import OpenAI
client = OpenAI(
base_url="https://api.zorveus.com/v1",
api_key="zrv_your_inference_key",
)
response = client.responses.create(
model="openai/gpt-4.1-mini",
input="What are three core benefits of edge computing?",
)
print(response.output_text)Was this page helpful?
Edit this page on GitHub