GET
/
responses
/
{id}
/
input_items
curl --request GET \
  --url https://{controlPlaneURL}/api/llm/api/inference/openai/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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Id of the response

Response

200
application/json

Model response input items retrieved successfully

The response is of type object.