GetScreenshot is a powerful programmable API that allows you to do screenshot operations at scale and for less than the existing solutions.
Go to siteUse the GetScreenshot API to take screenshots of entire websites, web pages, or specific elements on a page. Or use it to create PDFs of web pages or specific elements on a page.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
getscreenshot: {
type: "app",
app: "getscreenshot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rasterwise.com/v1/get-screenshot`,
params: {
apikey: `${this.getscreenshot.$auth.api_key}`,
url: `https://pipedream.com`,
},
})
},
})
GetScreenshot uses API keys for authentication. When you connect your GetScreenshot account, Pipedream securely stores the keys so you can easily authenticate to GetScreenshot APIs in both code and no-code steps.
Your API key is delivered to your inbox when you sign up to GetScreenshot.