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

# screenshotone

> ScreenshotOne API

**Server path:** `/screenshotone` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                  | Description                                                         |
| --------------------------------------------------------------------- | ------------------------------------------------------------------- |
| [`screenshotone_api_usage_metrics`](#screenshotone_api_usage_metrics) | Get API usage metrics                                               |
| [`screenshotone_bulk`](#screenshotone_bulk)                           | Take a screenshot of the website or render HTML or Markdown         |
| [`screenshotone_devices`](#screenshotone_devices)                     | The list of supported devices                                       |
| [`screenshotone_take_screenshot`](#screenshotone_take_screenshot)     | Generate a screenshot or PDF of a website, render HTML, or Markdown |

***

## screenshotone\_api\_usage\_metrics

Get API usage metrics

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## screenshotone\_bulk

Take a screenshot of the website or render HTML or Markdown

**Parameters:**

| Parameter  | Type      | Required | Default | Description        |
| ---------- | --------- | -------- | ------- | ------------------ |
| `execute`  | boolean   | Yes      | —       | The execute value  |
| `optimize` | boolean   | Yes      | —       | The optimize value |
| `options`  | object    | Yes      | —       | The options value  |
| `requests` | object\[] | Yes      | —       | The requests value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "execute": {
        "type": "boolean",
        "description": "The execute value"
      },
      "optimize": {
        "type": "boolean",
        "description": "The optimize value"
      },
      "options": {
        "type": "object",
        "description": "The options value",
        "properties": {
          "url": {
            "type": "string",
            "description": "The url value"
          },
          "html": {
            "type": "string",
            "description": "The html value"
          },
          "markdown": {
            "type": "string",
            "description": "The markdown value"
          },
          "selector": {
            "type": "string",
            "description": "The selector value"
          },
          "error_on_selector_not_found": {
            "type": "boolean",
            "description": "Error On Selector Not Found"
          },
          "response_type": {
            "type": "string",
            "description": "Response Type",
            "enum": [
              "by_format",
              "empty"
            ]
          },
          "format": {
            "type": "string",
            "description": "The format value",
            "enum": [
              "png",
              "jpeg",
              "jpg",
              "webp",
              "gif",
              "jp2",
              "tiff",
              "avif",
              "heif",
              "html"
            ]
          },
          "clip_x": {
            "type": "integer",
            "description": "Clip X"
          },
          "clip_y": {
            "type": "integer",
            "description": "Clip Y"
          },
          "clip_width": {
            "type": "integer",
            "description": "Clip Width"
          },
          "clip_height": {
            "type": "integer",
            "description": "Clip Height"
          },
          "dark_mode": {
            "type": "boolean",
            "description": "Dark Mode"
          },
          "reduced_motion": {
            "type": "boolean",
            "description": "Reduced Motion"
          },
          "media_type": {
            "type": "string",
            "description": "Media Type",
            "enum": [
              "screen",
              "print"
            ]
          },
          "scripts": {
            "type": "string",
            "description": "The scripts value"
          },
          "scripts_wait_until": {
            "type": "string",
            "description": "Scripts Wait Until",
            "enum": [
              "load",
              "domcontentloaded",
              "networkidle0",
              "networkidle2"
            ]
          },
          "styles": {
            "type": "string",
            "description": "The styles value"
          },
          "hide_selectors": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Hide Selectors"
          },
          "click": {
            "type": "string",
            "description": "The click value"
          },
          "image_quality": {
            "type": "integer",
            "description": "Image Quality"
          },
          "image_width": {
            "type": "integer",
            "description": "Image Width"
          },
          "image_height": {
            "type": "integer",
            "description": "Image Height"
          },
          "omit_background": {
            "type": "boolean",
            "description": "Omit Background"
          },
          "viewport_device": {
            "type": "string",
            "description": "Viewport Device"
          },
          "viewport_width": {
            "type": "integer",
            "description": "Viewport Width"
          },
          "viewport_height": {
            "type": "integer",
            "description": "Viewport Height"
          },
          "device_scale_factor": {
            "type": "integer",
            "description": "Device Scale Factor"
          },
          "viewport_mobile": {
            "type": "boolean",
            "description": "Viewport Mobile"
          },
          "viewport_has_touch": {
            "type": "boolean",
            "description": "Viewport Has Touch"
          },
          "viewport_landscape": {
            "type": "boolean",
            "description": "Viewport Landscape"
          },
          "full_page": {
            "type": "boolean",
            "description": "Full Page"
          },
          "full_page_scroll": {
            "type": "boolean",
            "description": "Full Page Scroll"
          },
          "full_page_scroll_delay": {
            "type": "integer",
            "description": "Full Page Scroll Delay"
          },
          "full_page_scroll_by": {
            "type": "integer",
            "description": "Full Page Scroll By"
          },
          "geolocation_latitude": {
            "type": "number",
            "description": "Geolocation Latitude"
          },
          "geolocation_longitude": {
            "type": "number",
            "description": "Geolocation Longitude"
          },
          "geolocation_accuracy": {
            "type": "integer",
            "description": "Geolocation Accuracy"
          },
          "block_cookie_banners": {
            "type": "boolean",
            "description": "Block Cookie Banners"
          },
          "block_banners_by_heuristics": {
            "type": "boolean",
            "description": "Block Banners By Heuristics"
          },
          "block_chats": {
            "type": "boolean",
            "description": "Block Chats"
          },
          "block_ads": {
            "type": "boolean",
            "description": "Block Ads"
          },
          "block_socials": {
            "type": "boolean",
            "description": "Block Socials"
          },
          "block_trackers": {
            "type": "boolean",
            "description": "Block Trackers"
          },
          "block_requests": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Block Requests"
          },
          "block_resources": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "document",
                "stylesheet",
                "image",
                "media",
                "font",
                "script",
                "texttrack",
                "xhr",
                "fetch",
                "eventsource",
                "websocket",
                "manifest",
                "other"
              ]
            },
            "description": "Block Resources"
          },
          "cache": {
            "type": "boolean",
            "description": "The cache value"
          },
          "cache_ttl": {
            "type": "integer",
            "description": "Cache Ttl"
          },
          "cache_key": {
            "type": "string",
            "description": "Cache Key"
          },
          "user_agent": {
            "type": "string",
            "description": "User Agent"
          },
          "authorization": {
            "type": "string",
            "description": "The authorization value"
          },
          "headers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The headers value"
          },
          "cookies": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The cookies value"
          },
          "proxy": {
            "type": "string",
            "description": "The proxy value"
          },
          "time_zone": {
            "type": "string",
            "description": "Timezone identifier",
            "enum": [
              "America/Santiago",
              "Asia/Shanghai",
              "Europe/Berlin",
              "America/Guayaquil",
              "Europe/Madrid",
              "Pacific/Majuro",
              "Asia/Kuala_Lumpur",
              "Pacific/Auckland",
              "Europe/Lisbon",
              "Europe/Kiev",
              "Asia/Tashkent",
              "Europe/London"
            ]
          },
          "delay": {
            "type": "integer",
            "description": "The delay value"
          },
          "timeout": {
            "type": "integer",
            "description": "The timeout value"
          },
          "wait_until": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "load",
                "domcontentloaded",
                "networkidle0",
                "networkidle2"
              ]
            },
            "description": "Wait Until"
          },
          "wait_for_selector": {
            "type": "string",
            "description": "Wait For Selector"
          },
          "store": {
            "type": "boolean",
            "description": "The store value"
          },
          "storage_bucket": {
            "type": "string",
            "description": "Storage Bucket"
          },
          "storage_path": {
            "type": "string",
            "description": "Storage Path"
          },
          "storage_class": {
            "type": "string",
            "description": "Storage Class",
            "enum": [
              "standard",
              "reduced_redundancy",
              "standard_ia",
              "onezone_ia",
              "intelligent_tiering",
              "glacier",
              "deep_archive",
              "outposts",
              "glacier_ir"
            ]
          }
        }
      },
      "requests": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string",
              "format": "uri",
              "description": "The url value"
            },
            "html": {
              "type": "string",
              "description": "The html value"
            },
            "markdown": {
              "type": "string",
              "description": "The markdown value"
            },
            "selector": {
              "type": "string",
              "description": "The selector value"
            },
            "error_on_selector_not_found": {
              "type": "boolean",
              "description": "Error On Selector Not Found"
            },
            "response_type": {
              "type": "string",
              "enum": [
                "by_format",
                "empty"
              ],
              "description": "Response Type"
            },
            "format": {
              "type": "string",
              "enum": [
                "png",
                "jpeg",
                "jpg",
                "webp",
                "gif",
                "jp2",
                "tiff",
                "avif",
                "heif",
                "html"
              ],
              "description": "The format value"
            },
            "clip_x": {
              "type": "integer",
              "description": "Clip X"
            },
            "clip_y": {
              "type": "integer",
              "description": "Clip Y"
            },
            "clip_width": {
              "type": "integer",
              "description": "Clip Width"
            },
            "clip_height": {
              "type": "integer",
              "description": "Clip Height"
            },
            "dark_mode": {
              "type": "boolean",
              "description": "Dark Mode"
            },
            "reduced_motion": {
              "type": "boolean",
              "description": "Reduced Motion"
            },
            "media_type": {
              "type": "string",
              "enum": [
                "screen",
                "print"
              ],
              "description": "Media Type"
            },
            "scripts": {
              "type": "string",
              "description": "The scripts value"
            },
            "scripts_wait_until": {
              "type": "string",
              "enum": [
                "load",
                "domcontentloaded",
                "networkidle0",
                "networkidle2"
              ],
              "description": "Scripts Wait Until"
            },
            "styles": {
              "type": "string",
              "description": "The styles value"
            },
            "hide_selectors": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Hide Selectors"
            },
            "click": {
              "type": "string",
              "description": "The click value"
            },
            "image_quality": {
              "type": "integer",
              "description": "Image Quality"
            },
            "image_width": {
              "type": "integer",
              "description": "Image Width"
            },
            "image_height": {
              "type": "integer",
              "description": "Image Height"
            },
            "omit_background": {
              "type": "boolean",
              "description": "Omit Background"
            },
            "viewport_device": {
              "type": "string",
              "description": "Viewport Device"
            },
            "viewport_width": {
              "type": "integer",
              "description": "Viewport Width"
            },
            "viewport_height": {
              "type": "integer",
              "description": "Viewport Height"
            },
            "device_scale_factor": {
              "type": "integer",
              "description": "Device Scale Factor"
            },
            "viewport_mobile": {
              "type": "boolean",
              "description": "Viewport Mobile"
            },
            "viewport_has_touch": {
              "type": "boolean",
              "description": "Viewport Has Touch"
            },
            "viewport_landscape": {
              "type": "boolean",
              "description": "Viewport Landscape"
            },
            "full_page": {
              "type": "boolean",
              "description": "Full Page"
            },
            "full_page_scroll": {
              "type": "boolean",
              "description": "Full Page Scroll"
            },
            "full_page_scroll_delay": {
              "type": "integer",
              "description": "Full Page Scroll Delay"
            },
            "full_page_scroll_by": {
              "type": "integer",
              "description": "Full Page Scroll By"
            },
            "geolocation_latitude": {
              "type": "number",
              "description": "Geolocation Latitude"
            },
            "geolocation_longitude": {
              "type": "number",
              "description": "Geolocation Longitude"
            },
            "geolocation_accuracy": {
              "type": "integer",
              "description": "Geolocation Accuracy"
            },
            "block_cookie_banners": {
              "type": "boolean",
              "description": "Block Cookie Banners"
            },
            "block_banners_by_heuristics": {
              "type": "boolean",
              "description": "Block Banners By Heuristics"
            },
            "block_chats": {
              "type": "boolean",
              "description": "Block Chats"
            },
            "block_ads": {
              "type": "boolean",
              "description": "Block Ads"
            },
            "block_socials": {
              "type": "boolean",
              "description": "Block Socials"
            },
            "block_trackers": {
              "type": "boolean",
              "description": "Block Trackers"
            },
            "block_requests": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Block Requests"
            },
            "block_resources": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Block Resources"
            },
            "cache": {
              "type": "boolean",
              "description": "The cache value"
            },
            "cache_ttl": {
              "type": "integer",
              "description": "Cache Ttl"
            },
            "cache_key": {
              "type": "string",
              "description": "Cache Key"
            },
            "user_agent": {
              "type": "string",
              "description": "User Agent"
            },
            "authorization": {
              "type": "string",
              "description": "The authorization value"
            },
            "headers": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "The headers value"
            },
            "cookies": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "The cookies value"
            },
            "proxy": {
              "type": "string",
              "format": "uri",
              "description": "The proxy value"
            },
            "time_zone": {
              "type": "string",
              "enum": [
                "America/Santiago",
                "Asia/Shanghai",
                "Europe/Berlin",
                "America/Guayaquil",
                "Europe/Madrid",
                "Pacific/Majuro",
                "Asia/Kuala_Lumpur",
                "Pacific/Auckland",
                "Europe/Lisbon",
                "Europe/Kiev",
                "Asia/Tashkent",
                "Europe/London"
              ],
              "description": "Timezone identifier"
            },
            "delay": {
              "type": "integer",
              "description": "The delay value"
            },
            "timeout": {
              "type": "integer",
              "description": "The timeout value"
            },
            "wait_until": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Wait Until"
            },
            "wait_for_selector": {
              "type": "string",
              "description": "Wait For Selector"
            },
            "store": {
              "type": "boolean",
              "description": "The store value"
            },
            "storage_bucket": {
              "type": "string",
              "description": "Storage Bucket"
            },
            "storage_path": {
              "type": "string",
              "description": "Storage Path"
            },
            "storage_class": {
              "type": "string",
              "enum": [
                "standard",
                "reduced_redundancy",
                "standard_ia",
                "onezone_ia",
                "intelligent_tiering",
                "glacier",
                "deep_archive",
                "outposts",
                "glacier_ir"
              ],
              "description": "Storage Class"
            }
          }
        },
        "description": "The requests value"
      }
    },
    "required": [
      "PCID",
      "execute",
      "optimize",
      "options",
      "requests"
    ]
  }
  ```
</Expandable>

***

## screenshotone\_devices

The list of supported devices

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## screenshotone\_take\_screenshot

Generate a screenshot or PDF of a website, render HTML, or Markdown

**Parameters:**

| Parameter                     | Type      | Required | Default | Description                 |
| ----------------------------- | --------- | -------- | ------- | --------------------------- |
| `authorization`               | string    | No       | —       | The authorization value     |
| `block_ads`                   | boolean   | No       | —       | Block Ads                   |
| `block_banners_by_heuristics` | boolean   | No       | —       | Block Banners By Heuristics |
| `block_chats`                 | boolean   | No       | —       | Block Chats                 |
| `block_cookie_banners`        | boolean   | No       | —       | Block Cookie Banners        |
| `block_requests`              | string\[] | No       | —       | Block Requests              |
| `block_resources`             | string\[] | No       | —       | Block Resources             |
| `block_socials`               | boolean   | No       | —       | Block Socials               |
| `block_trackers`              | boolean   | No       | —       | Block Trackers              |
| `cache`                       | boolean   | No       | —       | The cache value             |
| `cache_key`                   | string    | No       | —       | Cache Key                   |
| `cache_ttl`                   | integer   | No       | —       | Cache Ttl                   |
| `click`                       | string    | No       | —       | The click value             |
| `clip_height`                 | integer   | No       | —       | Clip Height                 |
| `clip_width`                  | integer   | No       | —       | Clip Width                  |
| `clip_x`                      | integer   | No       | —       | Clip X                      |
| `clip_y`                      | integer   | No       | —       | Clip Y                      |
| `cookies`                     | string\[] | No       | —       | The cookies value           |
| `dark_mode`                   | boolean   | No       | —       | Dark Mode                   |
| `delay`                       | integer   | No       | —       | The delay value             |
| `device_scale_factor`         | integer   | No       | —       | Device Scale Factor         |
| `error_on_selector_not_found` | boolean   | No       | —       | Error On Selector Not Found |
| `format`                      | string    | No       | —       | The format value            |
| `full_page`                   | boolean   | No       | —       | Full Page                   |
| `full_page_scroll`            | boolean   | No       | —       | Full Page Scroll            |
| `full_page_scroll_by`         | integer   | No       | —       | Full Page Scroll By         |
| `full_page_scroll_delay`      | integer   | No       | —       | Full Page Scroll Delay      |
| `geolocation_accuracy`        | integer   | No       | —       | Geolocation Accuracy        |
| `geolocation_latitude`        | number    | No       | —       | Geolocation Latitude        |
| `geolocation_longitude`       | number    | No       | —       | Geolocation Longitude       |
| `headers`                     | string\[] | No       | —       | The headers value           |
| `hide_selectors`              | string\[] | No       | —       | Hide Selectors              |
| `html`                        | string    | No       | —       | The html value              |
| `image_height`                | integer   | No       | —       | Image Height                |
| `image_quality`               | integer   | No       | —       | Image Quality               |
| `image_width`                 | integer   | No       | —       | Image Width                 |
| `markdown`                    | string    | No       | —       | The markdown value          |
| `media_type`                  | string    | No       | —       | Media Type                  |
| `omit_background`             | boolean   | No       | —       | Omit Background             |
| `proxy`                       | string    | No       | —       | The proxy value             |
| `reduced_motion`              | boolean   | No       | —       | Reduced Motion              |
| `response_type`               | string    | No       | —       | Response Type               |
| `scripts`                     | string    | No       | —       | The scripts value           |
| `scripts_wait_until`          | string    | No       | —       | Scripts Wait Until          |
| `selector`                    | string    | No       | —       | The selector value          |
| `storage_bucket`              | string    | No       | —       | Storage Bucket              |
| `storage_class`               | string    | No       | —       | Storage Class               |
| `storage_path`                | string    | No       | —       | Storage Path                |
| `store`                       | boolean   | No       | —       | The store value             |
| `styles`                      | string    | No       | —       | The styles value            |
| `time_zone`                   | string    | No       | —       | Timezone identifier         |
| `timeout`                     | integer   | No       | —       | The timeout value           |
| `url`                         | string    | No       | —       | The url value               |
| `user_agent`                  | string    | No       | —       | User Agent                  |
| `viewport_device`             | string    | No       | —       | Viewport Device             |
| `viewport_has_touch`          | boolean   | No       | —       | Viewport Has Touch          |
| `viewport_height`             | integer   | No       | —       | Viewport Height             |
| `viewport_landscape`          | boolean   | No       | —       | Viewport Landscape          |
| `viewport_mobile`             | boolean   | No       | —       | Viewport Mobile             |
| `viewport_width`              | integer   | No       | —       | Viewport Width              |
| `wait_for_selector`           | string    | No       | —       | Wait For Selector           |
| `wait_until`                  | string\[] | No       | —       | Wait Until                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "authorization": {
        "type": "string",
        "description": "The authorization value"
      },
      "block_ads": {
        "type": "boolean",
        "description": "Block Ads"
      },
      "block_banners_by_heuristics": {
        "type": "boolean",
        "description": "Block Banners By Heuristics"
      },
      "block_chats": {
        "type": "boolean",
        "description": "Block Chats"
      },
      "block_cookie_banners": {
        "type": "boolean",
        "description": "Block Cookie Banners"
      },
      "block_requests": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Block Requests"
      },
      "block_resources": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "document",
            "stylesheet",
            "image",
            "media",
            "font",
            "script",
            "texttrack",
            "xhr",
            "fetch",
            "eventsource",
            "websocket",
            "manifest",
            "other"
          ]
        },
        "description": "Block Resources"
      },
      "block_socials": {
        "type": "boolean",
        "description": "Block Socials"
      },
      "block_trackers": {
        "type": "boolean",
        "description": "Block Trackers"
      },
      "cache": {
        "type": "boolean",
        "description": "The cache value"
      },
      "cache_key": {
        "type": "string",
        "description": "Cache Key"
      },
      "cache_ttl": {
        "type": "integer",
        "description": "Cache Ttl"
      },
      "click": {
        "type": "string",
        "description": "The click value"
      },
      "clip_height": {
        "type": "integer",
        "description": "Clip Height"
      },
      "clip_width": {
        "type": "integer",
        "description": "Clip Width"
      },
      "clip_x": {
        "type": "integer",
        "description": "Clip X"
      },
      "clip_y": {
        "type": "integer",
        "description": "Clip Y"
      },
      "cookies": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "The cookies value"
      },
      "dark_mode": {
        "type": "boolean",
        "description": "Dark Mode"
      },
      "delay": {
        "type": "integer",
        "description": "The delay value"
      },
      "device_scale_factor": {
        "type": "integer",
        "description": "Device Scale Factor"
      },
      "error_on_selector_not_found": {
        "type": "boolean",
        "description": "Error On Selector Not Found"
      },
      "format": {
        "type": "string",
        "description": "The format value",
        "enum": [
          "png",
          "jpeg",
          "jpg",
          "webp",
          "gif",
          "jp2",
          "tiff",
          "avif",
          "heif",
          "html"
        ]
      },
      "full_page": {
        "type": "boolean",
        "description": "Full Page"
      },
      "full_page_scroll": {
        "type": "boolean",
        "description": "Full Page Scroll"
      },
      "full_page_scroll_by": {
        "type": "integer",
        "description": "Full Page Scroll By"
      },
      "full_page_scroll_delay": {
        "type": "integer",
        "description": "Full Page Scroll Delay"
      },
      "geolocation_accuracy": {
        "type": "integer",
        "description": "Geolocation Accuracy"
      },
      "geolocation_latitude": {
        "type": "number",
        "description": "Geolocation Latitude"
      },
      "geolocation_longitude": {
        "type": "number",
        "description": "Geolocation Longitude"
      },
      "headers": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "The headers value"
      },
      "hide_selectors": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Hide Selectors"
      },
      "html": {
        "type": "string",
        "description": "The html value"
      },
      "image_height": {
        "type": "integer",
        "description": "Image Height"
      },
      "image_quality": {
        "type": "integer",
        "description": "Image Quality"
      },
      "image_width": {
        "type": "integer",
        "description": "Image Width"
      },
      "markdown": {
        "type": "string",
        "description": "The markdown value"
      },
      "media_type": {
        "type": "string",
        "description": "Media Type",
        "enum": [
          "screen",
          "print"
        ]
      },
      "omit_background": {
        "type": "boolean",
        "description": "Omit Background"
      },
      "proxy": {
        "type": "string",
        "description": "The proxy value"
      },
      "reduced_motion": {
        "type": "boolean",
        "description": "Reduced Motion"
      },
      "response_type": {
        "type": "string",
        "description": "Response Type",
        "enum": [
          "by_format",
          "empty"
        ]
      },
      "scripts": {
        "type": "string",
        "description": "The scripts value"
      },
      "scripts_wait_until": {
        "type": "string",
        "description": "Scripts Wait Until",
        "enum": [
          "load",
          "domcontentloaded",
          "networkidle0",
          "networkidle2"
        ]
      },
      "selector": {
        "type": "string",
        "description": "The selector value"
      },
      "storage_bucket": {
        "type": "string",
        "description": "Storage Bucket"
      },
      "storage_class": {
        "type": "string",
        "description": "Storage Class",
        "enum": [
          "standard",
          "reduced_redundancy",
          "standard_ia",
          "onezone_ia",
          "intelligent_tiering",
          "glacier",
          "deep_archive",
          "outposts",
          "glacier_ir"
        ]
      },
      "storage_path": {
        "type": "string",
        "description": "Storage Path"
      },
      "store": {
        "type": "boolean",
        "description": "The store value"
      },
      "styles": {
        "type": "string",
        "description": "The styles value"
      },
      "time_zone": {
        "type": "string",
        "description": "Timezone identifier",
        "enum": [
          "America/Santiago",
          "Asia/Shanghai",
          "Europe/Berlin",
          "America/Guayaquil",
          "Europe/Madrid",
          "Pacific/Majuro",
          "Asia/Kuala_Lumpur",
          "Pacific/Auckland",
          "Europe/Lisbon",
          "Europe/Kiev",
          "Asia/Tashkent",
          "Europe/London"
        ]
      },
      "timeout": {
        "type": "integer",
        "description": "The timeout value"
      },
      "url": {
        "type": "string",
        "description": "The url value"
      },
      "user_agent": {
        "type": "string",
        "description": "User Agent"
      },
      "viewport_device": {
        "type": "string",
        "description": "Viewport Device"
      },
      "viewport_has_touch": {
        "type": "boolean",
        "description": "Viewport Has Touch"
      },
      "viewport_height": {
        "type": "integer",
        "description": "Viewport Height"
      },
      "viewport_landscape": {
        "type": "boolean",
        "description": "Viewport Landscape"
      },
      "viewport_mobile": {
        "type": "boolean",
        "description": "Viewport Mobile"
      },
      "viewport_width": {
        "type": "integer",
        "description": "Viewport Width"
      },
      "wait_for_selector": {
        "type": "string",
        "description": "Wait For Selector"
      },
      "wait_until": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "load",
            "domcontentloaded",
            "networkidle0",
            "networkidle2"
          ]
        },
        "description": "Wait Until"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
