# PublicBrowserAutomationRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    PublicBrowserAutomationRequest:
      required:
        - actions
      type: object
      properties:
        actions:
          type: array
          items:
            $ref: '#/components/schemas/BrowserAction'
          description: |-
            Ordered list of actions for the browser to perform.
            Actions will be executed sequentially from the first to the last.
      additionalProperties: false
      description: >-
        Request payload for launching a browser session. This is the
        public-facing version without ViewSettings.
      x-apidog-orders:
        - actions
      x-apidog-folder: ''
    BrowserAction:
      type: object
      properties:
        name:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        data:
          type: string
          nullable: true
      additionalProperties: false
      x-apidog-orders:
        - name
        - description
        - data
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.scrapingduck.com
    description: Prod Env
security: []

```
