import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
capturekit: {
type: "app",
app: "capturekit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.capturekit.dev/capture`,
headers: {
"x-access-key": `${this.capturekit.$auth.access_key}`,
},
params: {
url: `https://pipedream.com`,
},
})
},
})
Capture a high-quality image of any webpage. See the documentation
Extract structured data from any webpage, including metadata, links, and raw HTML. See the documentation
CaptureKit uses API keys for authentication. When you connect your CaptureKit account, Pipedream securely stores the keys so you can easily authenticate to CaptureKit APIs in both code and no-code steps.