Parseur is the most powerful and user-friendly mail parser. A data extraction tool to automatically extract text from your emails, pdfs, and other documents.
Go to siteParseur is an AI-powered email parsing and extraction API that allows you to easily extract data from incoming emails. This powerful tool can be used to build applications and software that automates a wide variety of processes. Here are some examples of what you can build with the Parseur API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
parseur: {
type: "app",
app: "parseur",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.parseur.com/parser`,
headers: {
"Authorization": `Token ${this.parseur.$auth.api_token}`,
},
})
},
})
Emit new event when a new document is not processed. It is triggered when a document fails to process with status New Template Needed
. See the docs.
Emit new event when a new document is processed. It is useful for endpoints that don't support deep JSON structures as it will flatten your table fields. See the docs.
Emit new event when a new document is processed with list items. The payload format is the same as when viewing the document and clicking on view as JSON
. See the docs.
Parseur uses API keys for authentication. When you connect your Parseur account, Pipedream securely stores the keys so you can easily authenticate to Parseur APIs in both code and no-code steps.
Parseur API uses a token-based authentication.
You will find your API Token Key in your Account Overview.