with Docparser and Gather?
Emit new event every time a document is processed and parsed data is available. See the documentation
Fetches a document from a provided URL and imports it to Docparser for parsing. See the documentation
Uploads a document to docparser that initiates parsing immediately after reception. See the documentation
Docparser 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: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gather: {
type: "app",
app: "gather",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gather.town/api/getEmailGuestlist`,
params: {
spaceId: `${this.gather.$auth.space_id}`,
apiKey: `${this.gather.$auth.api_key}`,
},
})
},
})