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

# ScreencastFrame

Represents a single frame from a page screencast.
Contains the image data and metadata about the frame's context.

## Definition

```graphql theme={null}
object ScreencastFrame {
  data: String!
  metadata: ScreencastFrameMetadata!
}
```

## Fields

### `data`

[String!](/reference/graphql/scalars/string)

The image data for the screencast frame, Base64 encoded.
This is typically a JPEG or PNG image.
Example: `"data:image/jpeg;base64,<payload>"`.

### `metadata`

[ScreencastFrameMetadata!](/reference/graphql/objects/screencast-frame-metadata)

Metadata associated with this screencast frame, providing context such as viewport dimensions and scroll offsets.
See `ScreencastFrameMetadata` for details.
