---
title: "List Downloads"
method: GET
path: "/v1/downloads"
---

# List Downloads

`GET /v1/downloads`

List all downloads for a session with optional filtering and pagination.

## Query parameters

- `sessionId` string, required
- `filename` string
- `mimeType` string
- `minSize` number
- `maxSize` number
- `createdAfter` string, date-time
- `createdBefore` string, date-time
- `limit` number
- `offset` number

## Response `200`

The request has succeeded.

- object
  - `downloads` object[], required
    - `id` string, required — Unique identifier for the download.
    - `sessionId` string, required — The Session ID this download belongs to.
    - `filename` string, required — The filename of the downloaded file.
    - `mimeType` string, required — The MIME type of the file.
    - `size` number, required — File size in bytes.
    - `checksum` string, required — SHA256 checksum of the file.
    - `createdAt` string, date-time, required — Timestamp when the file was downloaded.
  - `total` number, required — Total count of matching downloads.
  - `limit` number, required
  - `offset` number, required

---

[API](https://skmtc.net/browserbase/apis/browserbase-api.md) · [All operations](https://skmtc.net/browserbase/apis/browserbase-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/browserbase/browserbase-api/versions/832b22144edf/schema)
