## Retrieve `client.responses.retrieve(stringid, RequestOptionsoptions?): ResponsesResponse` **get** `/v1/responses/{id}` Retrieve a previously created response by its ID, including all output items. ### Parameters - `id: string` ### Returns - `ResponsesResponse` - `id?: string` - `computer_id?: string` - `created_at?: string` - `max_output_tokens?: number` - `model?: string` - `object?: string` - `output?: Array` - `id?: string` - `action?: V2GoBackendInternalServiceAction` - `button?: string` - `end_x?: number` - `end_y?: number` - `keys?: Array` - `result?: string` - `scroll_x?: number` - `scroll_y?: number` - `status?: string` - `text?: string` - `type?: "click" | "double_click" | "triple_click" | 14 more` - `"click"` - `"double_click"` - `"triple_click"` - `"right_click"` - `"type"` - `"key"` - `"keypress"` - `"key_down"` - `"key_up"` - `"scroll"` - `"hscroll"` - `"navigate"` - `"drag"` - `"wait"` - `"terminate"` - `"answer"` - `"done"` - `url?: string` - `x?: number` - `y?: number` - `call_id?: string` - `content?: Array` - `image_url?: string` - `text?: string` - `type?: "input_text" | "output_text" | "summary_text" | "input_image"` - `"input_text"` - `"output_text"` - `"summary_text"` - `"input_image"` - `role?: string` - `status?: string` - `summary?: Array` - `image_url?: string` - `text?: string` - `type?: "input_text" | "output_text" | "summary_text" | "input_image"` - `"input_text"` - `"output_text"` - `"summary_text"` - `"input_image"` - `type?: "reasoning" | "computer_call" | "computer_call_output" | "message"` - `"reasoning"` - `"computer_call"` - `"computer_call_output"` - `"message"` - `status?: string` - `temperature?: number` - `top_p?: number` - `usage?: V2GoBackendInternalServiceResponsesUsage` - `input_tokens?: number` - `output_tokens?: number` - `total_tokens?: number` - `viewport?: V2GoBackendInternalServiceViewport` - `environment?: string` - `height?: number` - `width?: number` ### Example ```typescript import Lightcone from '@tzafon/lightcone'; const client = new Lightcone({ apiKey: process.env['TZAFON_API_KEY'], // This is the default and can be omitted }); const responsesResponse = await client.responses.retrieve('id'); console.log(responsesResponse.id); ```