PDFMonkey is an API that enables users to build powerful applications that generate and manipulate PDF files. The API allows developers to generate and manipulate documents such as modifying texts, adding images, creating form fields and content, as well as signing and securing documents.
Below are some of the great products you can build using the PDFMonkey API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdfmonkey: {
type: "app",
app: "pdfmonkey",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pdfmonkey.io/api/v1/current_user`,
headers: {
Authorization: `Bearer ${this.pdfmonkey.$auth.api_key}`,
},
})
},
})
PDFMonkey uses API keys for authentication. When you connect your PDFMonkey account, Pipedream securely stores the keys so you can easily authenticate to PDFMonkey APIs in both code and no-code steps.
To retrieve your API keys,