Docparser is the most advanced cloud based document parsing and automation tool in the market today.
Go to siteDocparser is a tool for extracting data from documents, such as PDFs, Word, and images. With the Docparser API, you can automate the process of capturing data without manual entry, transforming documents into actionable information. It shines in scenarios where structured information needs to be pulled from files that typically require manual data entry, such as invoices, forms, and reports.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docparser: {
type: "app",
app: "docparser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.docparser.com/v1/ping`,
auth: {
username: `${this.docparser.$auth.api_key}`,
password: ``,
},
})
},
})
Docparser uses API keys for authentication. When you connect your Docparser account, Pipedream securely stores the keys so you can easily authenticate to Docparser APIs in both code and no-code steps.
You can obtain and reset your secret API key in the API Settings of your Docparser Account.