Skip to main content
GET
/
v1
/
responses
/
{response_id}
curl https://gateway.bud.studio/v1/responses/resp_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-model-name: gpt-4"
{
  "id": "resp_abc123",
  "object": "response",
  "created_at": 1699000000,
  "model": "gpt-4",
  "status": "completed",
  "output": "The capital of France is Paris.",
  "usage": {
    "input_tokens": 15,
    "output_tokens": 8,
    "total_tokens": 23
  },
  "metadata": null
}
curl https://gateway.bud.studio/v1/responses/resp_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-model-name: gpt-4"
{
  "id": "resp_abc123",
  "object": "response",
  "created_at": 1699000000,
  "model": "gpt-4",
  "status": "completed",
  "output": "The capital of France is Paris.",
  "usage": {
    "input_tokens": 15,
    "output_tokens": 8,
    "total_tokens": 23
  },
  "metadata": null
}

Headers

ParameterTypeRequiredDescription
AuthorizationstringYesBearer authentication header
x-model-namestringNoModel name for routing. Default: gpt-4-responses

Path Parameters

ParameterTypeRequiredDescription
response_idstringYesThe ID of the response to retrieve

Supported Providers

OpenAI

Full Responses API lifecycle management

Azure OpenAI

Enterprise-grade response management