> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /show/video

```
URL: http://<db.host>:<db.port>/show/video
```

Retrieves information about rendered videos.

## Input Parameter Description

<ParamField body="paths" type="array of strings">
  The fully-qualified [KiFS](../../tools/kifs/) paths for the videos to show. If empty, shows all videos.
</ParamField>

<ParamField body="options" type="map of string to strings">
  Optional parameters.

  The default value is an empty map ( \{} ).
</ParamField>

## Output Parameter Description

The Kinetica server embeds the endpoint response inside a standard response structure which contains status information and the actual response to the query.  Here is a description of the various fields of the wrapper:

<ResponseField name="status" type="String">
  'OK' or 'ERROR'
</ResponseField>

<ResponseField name="message" type="String">
  Empty if success or an error message
</ResponseField>

<ResponseField name="data_type" type="String">
  'show\_video\_response' or 'none' in case of an error
</ResponseField>

<ResponseField name="data" type="String">
  Empty string
</ResponseField>

<ResponseField name="data_str" type="JSON or String">
  This embedded JSON represents the result of the /show/video endpoint:

  <Expandable title="data_str">
    <ResponseField name="creation_times" type="array of strings">
      Creation time for each video as an ISO-8601 datetime.
    </ResponseField>

    <ResponseField name="elapsed_render_time_seconds" type="array of longs">
      The elapsed time spent rendering each video in seconds.
    </ResponseField>

    <ResponseField name="job_ids" type="array of longs">
      The job id of the rendering process, for each video that is still being rendered.
    </ResponseField>

    <ResponseField name="paths" type="array of strings">
      KIFS path to each video.
    </ResponseField>

    <ResponseField name="rendered_bytes" type="array of longs">
      The number of bytes emitted by the encoder for each video.
    </ResponseField>

    <ResponseField name="rendered_frames" type="array of longs">
      The number of frames rendered for each video.
    </ResponseField>

    <ResponseField name="rendered_percents" type="array of longs">
      Percent completion of each video's rendering process (0-100).
    </ResponseField>

    <ResponseField name="requests" type="array of strings">
      JSON-string reflecting each video's creation parameters.
    </ResponseField>

    <ResponseField name="status" type="array of strings">
      The status of the last rendered frame for each video.  Either OK or Error with a message indicating the nature of the error.
    </ResponseField>

    <ResponseField name="ttls" type="array of longs">
      The remaining [TTL](../../concepts/ttl/), in minutes, before the respective video expires (-1 if it will never expire).
    </ResponseField>

    <ResponseField name="info" type="map of string to strings">
      Additional information.
    </ResponseField>
  </Expandable>

  Empty string in case of an error.
</ResponseField>
