Responses
Get Model Response
Get Started
Developer Guide
- Providers
- Code Integration
Configure Gateway
- Access Control
- Rate Limiting
- Load Balancing
- Fallback
- Guardrails
Observability
Deployment
Embeddings
Rerank
Responses
Moderations
Responses
Get Model Response
Get a specific model response
GET
/
responses
/
{id}
curl --request GET \
--url https://{controlPlaneURL}/api/llm/api/inference/openai/responses/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "<string>",
"created_at": 123,
"status": "<string>",
"error": "<any>",
"incomplete_details": "<any>",
"instructions": "<any>",
"max_output_tokens": 123,
"model": "<string>",
"output": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>",
"content": [
{
"type": "<string>",
"annotations": [
"<any>"
],
"text": "<string>"
}
],
"role": "<string>"
}
],
"parallel_tool_calls": true,
"previous_response_id": "<string>",
"reasoning": {
"effort": "<any>",
"summary": "<any>"
},
"service_tier": "<string>",
"store": true,
"temperature": 123,
"text": {
"format": {
"type": "<string>"
}
},
"tool_choice": "<string>",
"tools": [
"<any>"
],
"top_p": 123,
"truncation": "<string>",
"usage": {
"input_tokens": 123,
"input_tokens_details": {
"cached_tokens": 123
},
"output_tokens": 123,
"output_tokens_details": {
"reasoning_tokens": 123
},
"total_tokens": 123
},
"user": "<any>",
"metadata": {},
"provider": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the response
Response
200
application/json
Model response retrieved successfully
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://{controlPlaneURL}/api/llm/api/inference/openai/responses/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "<string>",
"created_at": 123,
"status": "<string>",
"error": "<any>",
"incomplete_details": "<any>",
"instructions": "<any>",
"max_output_tokens": 123,
"model": "<string>",
"output": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>",
"content": [
{
"type": "<string>",
"annotations": [
"<any>"
],
"text": "<string>"
}
],
"role": "<string>"
}
],
"parallel_tool_calls": true,
"previous_response_id": "<string>",
"reasoning": {
"effort": "<any>",
"summary": "<any>"
},
"service_tier": "<string>",
"store": true,
"temperature": 123,
"text": {
"format": {
"type": "<string>"
}
},
"tool_choice": "<string>",
"tools": [
"<any>"
],
"top_p": 123,
"truncation": "<string>",
"usage": {
"input_tokens": 123,
"input_tokens_details": {
"cached_tokens": 123
},
"output_tokens": 123,
"output_tokens_details": {
"reasoning_tokens": 123
},
"total_tokens": 123
},
"user": "<any>",
"metadata": {},
"provider": "<string>"
}