# Screenshots

Read tracked screenshots captured by the time tracker. Screenshots are workspace-scoped, filterable by member, project, task, and date range. Read-only.

## Get Screenshots

 - [GET /screenshots](https://api-docs.webwork-tracker.com/api/screenshots/getscreenshots.md): Retrieve tracked screenshots for a workspace. Returns a paginated list ordered oldest-first, with member, project, and task context for every capture. Filterable by member, project, task, and date range; when no date range is given, defaults to today in the workspace owner's timezone. Requires workspace owner or executive manager permissions.

Note: no image URL is included — fetch the image bytes via GET /screenshots/{screenshot_id}/download.

## Get Single Screenshot

 - [GET /screenshots/{screenshot_id}](https://api-docs.webwork-tracker.com/api/screenshots/getscreenshot.md): Retrieve a single tracked screenshot with its member / project / task context. To get the image itself, use GET /screenshots/{screenshot_id}/download. Requires workspace owner or executive manager permissions.

## Download Screenshot Image

 - [GET /screenshots/{screenshot_id}/download](https://api-docs.webwork-tracker.com/api/screenshots/downloadscreenshot.md): Download the full-size screenshot image. The image is fetched from the media storage server-side and streamed back as a file attachment, so no direct media URL is ever exposed. Requires workspace owner or executive manager permissions.

