> ## 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 Run Attachments

> The upload files attached to a run, for rendering attachment chips.
Ordered to match the run's attached_file_ids.



## OpenAPI

````yaml /cloud/openapi/v4.json get /runs/{run_id}/attachments
openapi: 3.1.0
info:
  title: Browser Use Public API v4
  summary: Browser Use agent runs API (v4)
  version: 4.0.0
servers:
  - url: https://api.browser-use.com/api/v4
    description: Production server
security: []
tags:
  - name: Runs
  - name: Sessions
  - name: Workspaces
  - name: Browsers
  - name: Profiles
paths:
  /runs/{run_id}/attachments:
    get:
      tags:
        - Runs
      summary: List Run Attachments
      description: |-
        The upload files attached to a run, for rendering attachment chips.
        Ordered to match the run's attached_file_ids.
      operationId: list_run_attachments_runs__run_id__attachments_get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunAttachmentsResponse'
        '403':
          description: Zero Data Retention is enabled on the project (V4 unsupported).
        '404':
          description: Run, session, workspace, or profile not found.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    RunAttachmentsResponse:
      properties:
        attachments:
          items:
            $ref: '#/components/schemas/RunAttachment'
          type: array
          title: Attachments
      type: object
      required:
        - attachments
      title: RunAttachmentsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RunAttachment:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
          description: Filename shown to the user, e.g. "data.csv".
        contentType:
          type: string
          title: Contenttype
        sizeBytes:
          type: integer
          title: Sizebytes
        status:
          type: string
          enum:
            - pending
            - uploaded
          title: Status
          description: '"pending" | "uploaded".'
      type: object
      required:
        - id
        - name
        - contentType
        - sizeBytes
        - status
      title: RunAttachment
    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

````