> ## 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.

# ScreencastFrameMetadata

Metadata associated with a screencast frame.
Provides information about the state of the page when the frame was captured.
All dimensions and offsets are in CSS pixels unless otherwise noted.

## Definition

```graphql theme={null}
object ScreencastFrameMetadata {
  offsetTop: Float!
  pageScaleFactor: Float!
  deviceWidth: Float!
  deviceHeight: Float!
  scrollOffsetX: Float!
  scrollOffsetY: Float!
  timestamp: Float!
}
```

## Fields

### `offsetTop`

[Float!](/reference/graphql/scalars/float)

Vertical offset of the captured viewport area from the top of the page, in CSS pixels.

### `pageScaleFactor`

[Float!](/reference/graphql/scalars/float)

The scale factor of the page content. Example: `1.0` for 100% zoom.

### `deviceWidth`

[Float!](/reference/graphql/scalars/float)

The width of the device viewport, in CSS pixels.

### `deviceHeight`

[Float!](/reference/graphql/scalars/float)

The height of the device viewport, in CSS pixels.

### `scrollOffsetX`

[Float!](/reference/graphql/scalars/float)

Horizontal scroll offset of the page, in CSS pixels.

### `scrollOffsetY`

[Float!](/reference/graphql/scalars/float)

Vertical scroll offset of the page, in CSS pixels.

### `timestamp`

[Float!](/reference/graphql/scalars/float)

Timestamp when the frame was captured, as a Unix timestamp in milliseconds.
