The Screenshot API You Can Depend On. Since 2012, Urlbox has replaced unreliable, inaccurate and inconsistent screenshot APIs for developers like you.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
urlbox_io: {
type: "app",
app: "urlbox_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.urlbox.io/v1/${this.urlbox_io.$auth.publishable_key}/png`,
params: {
url: `pipedream.com`,
},
})
},
})
Generate a screenshot of a website provided by a html. See the docs here
Generate a screenshot of a website provided by a url. See the docs here
Urlbox.io uses API keys for authentication. When you connect your Urlbox.io account, Pipedream securely stores the keys so you can easily authenticate to Urlbox.io APIs in both code and no-code steps.
Sign in and copy your API key from the Projects page.