Take stunning, premium quality screenshots of any website with one API call.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshot_fyi: {
type: "app",
app: "screenshot_fyi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://screenshot.fyi/api/take`,
params: {
url: `https://pipedream.com`,
accessKey: `${this.screenshot_fyi.$auth.access_key}`,
},
})
},
})
Takes a screenshot of a webpage using Screenshot.fyi. See the documentation
screenshot.fyi uses API keys for authentication. When you connect your screenshot.fyi account, Pipedream securely stores the keys so you can easily authenticate to screenshot.fyi APIs in both code and no-code steps.