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

# List Browser Session Downloads

> List files the browser downloaded to S3 during the session.

Pass ``includeUrls=true`` to receive presigned download URLs (15 min expiry) inline.
Files are stored at ``downloads/projects/{project_id}/sessions/{session_id}/`` in
the private bucket.



## OpenAPI

````yaml /cloud/openapi/v3.json get /browsers/{session_id}/downloads
openapi: 3.1.0
info:
  title: Browser Use Public API v3
  summary: Browser Use session-based agent API (v3)
  version: 3.0.0
servers:
  - url: https://api.browser-use.com/api/v3
    description: Production server
security: []
paths:
  /browsers/{session_id}/downloads:
    get:
      tags:
        - Browsers
      summary: List Browser Session Downloads
      description: >-
        List files the browser downloaded to S3 during the session.


        Pass ``includeUrls=true`` to receive presigned download URLs (15 min
        expiry) inline.

        Files are stored at
        ``downloads/projects/{project_id}/sessions/{session_id}/`` in

        the private bucket.
      operationId: list_browser_session_downloads_browsers__session_id__downloads_get
      parameters:
        - name: session_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Session Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
        - name: includeUrls
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Includeurls
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserDownloadListResponse'
        '404':
          description: Session not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionNotFoundError'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BrowserDownloadListResponse:
      properties:
        files:
          items:
            $ref: '#/components/schemas/BrowserDownloadFile'
          type: array
          title: Files
          description: List of files downloaded by the browser
        nextCursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Nextcursor
          description: >-
            Cursor for the next page. Pass as the `cursor` query parameter to
            fetch the next page.
        hasMore:
          type: boolean
          title: Hasmore
          description: Whether there are more files beyond this page.
          default: false
      type: object
      required:
        - files
      title: BrowserDownloadListResponse
      description: Paginated list of browser downloads with optional presigned URLs.
    SessionNotFoundError:
      properties:
        detail:
          type: string
          title: Detail
          default: Session not found
      type: object
      title: SessionNotFoundError
      description: Error response when a session is not found
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrowserDownloadFile:
      properties:
        path:
          type: string
          title: Path
          description: File name (basename relative to the session downloads prefix)
        size:
          type: integer
          title: Size
          description: File size in bytes
        lastModified:
          type: string
          format: date-time
          title: Lastmodified
          description: When the file was last modified in S3
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
          description: >-
            Presigned download URL (15 min expiry). Only included when
            `includeUrls=true`.
      type: object
      required:
        - path
        - size
        - lastModified
      title: BrowserDownloadFile
      description: A single file the browser downloaded during the session.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Browser-Use-API-Key

````