cURL
curl --request GET \ --url https://{controlPlaneURL}/api/llm/responses/{id}/input_items \ --header 'Authorization: Bearer <token>'
{ "object": "<string>", "data": [ { "id": "<string>", "type": "<string>", "status": "<string>", "content": [ { "type": "<string>", "text": "<string>" } ], "role": "<string>" } ], "first_id": "<string>", "has_more": true, "last_id": "<string>" }
List input items for a specific model response
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Optional metadata for the request
Id of the response
Model response input items retrieved successfully
Type of the object, e.g., 'list'.
Array of message objects.
Show child attributes
Id of the message.
Type of the message, e.g., 'message'.
Status of the message, e.g., 'completed'.
Array of content objects.
Type of the content, e.g., 'input_text'.
Text content of the message.
Role of the entity, e.g., 'user' or 'system'.
ID of the first message in the list.
Indicates if there are more messages.
ID of the last message in the list.
Was this page helpful?