action browshot_get_thumbnail { label: "Retrieve a thumbnail image" description: "Unlike the other API calls, this API sends back the thumbnail as a PNG file, not JSON. The HTTP response code indicates whether the screenshot was successful (200), or incomplete (404) or failed (404). If the screenshot failed or is not finished, a default image \"Not found\" is sent.\n\nYou can crop your screenshots. The crop is done first, then the thumbnail. You can take a 1024x768 screenshot, crop it to 768x768, and get it scaled down to 300x300.\n" provider: browshot method: GET path: "/screenshot/thumbnail" encoding: json input: { type: "object" properties: { bottom: { type: "string" } format: { type: "string" } height: { type: "string" } id: { type: "string" } left: { type: "string" } quality: { type: "string" } ratio: { type: "string" } right: { type: "string" } scale: { type: "string" } shot: { type: "string" } top: { type: "string" } width: { type: "string" } zoom: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }