import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdf_munk: {
type: "app",
app: "pdf_munk",
}
},
async run({steps, $}) {
const data = {
"url": `https://pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://pdfmunk.com/api/v1/generateImage`,
headers: {
"accept": `application/json`,
"client-api-key": `${this.pdf_munk.$auth.api_key}`,
"content-type": `application/json`,
},
data,
})
},
})
Capture Screenshot of a Website URL into an image. See documentation
Converts a URL to a PDF file with customizable options. See documentation
Converts HTML/CSS content to a PDF file with customizable options. See documentation
PDF Munk uses API keys for authentication. When you connect your PDF Munk account, Pipedream securely stores the keys so you can easily authenticate to PDF Munk APIs in both code and no-code steps.