> ## Documentation Index
> Fetch the complete documentation index at: https://browseruse-0aece648-larsen-v1-unified-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Browser Downloads

> Files the browser downloaded off the web while navigating. S3-backed.



## OpenAPI

````yaml /cloud/openapi/v1.json get /browsers/{browser_id}/downloads
openapi: 3.1.0
info:
  title: Browser Use API v1
  summary: Unified /api/v1 preview spec, non-production only
  version: 1.0.0
servers:
  - url: https://api-staging-ufcbwvyv9yifyyvc3.browser-use.com/api/v1
    description: Browser Use API v1 (staging)
security: []
paths:
  /browsers/{browser_id}/downloads:
    get:
      tags:
        - Browsers
      summary: List Browser Downloads
      description: Files the browser downloaded off the web while navigating. S3-backed.
      operationId: list_browser_downloads_browsers__browser_id__downloads_get
      parameters:
        - name: browser_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Browser Id
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: S3 continuation cursor from a prior response.
            title: Cursor
          description: S3 continuation cursor from a prior response.
        - 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/DownloadList'
        '404':
          description: Browser not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserNotFoundError'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    DownloadList:
      properties:
        nextCursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Nextcursor
          description: Cursor for the next page, or null
        hasMore:
          type: boolean
          title: Hasmore
          description: Whether more pages exist
          default: false
        items:
          items:
            $ref: '#/components/schemas/DownloadFile'
          type: array
          title: Items
      type: object
      required:
        - items
      title: DownloadList
    BrowserNotFoundError:
      properties:
        detail:
          type: string
          title: Detail
          description: Human-readable error message
      type: object
      required:
        - detail
      title: BrowserNotFoundError
      description: No browser with that id in this project.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DownloadFile:
      properties:
        name:
          type: string
          title: Name
          description: File name (relative to the download folder).
        sizeBytes:
          type: integer
          title: Sizebytes
        lastModified:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Lastmodified
        downloadUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Downloadurl
          description: Presigned link; only set when includeUrls=true.
      type: object
      required:
        - name
        - sizeBytes
      title: DownloadFile
    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

````