Use AI to do your document processing, and free your team to do the real work
Emit new event when a document parsing is completed in Affinda See docs here
Emit new event when a document is validated in Affinda. See docs here
The Affinda API offers a suite of powerful tools for document analysis and extraction, enabling you to automate the processing of resumes, invoices, bank statements, and other documents. By parsing detailed information from documents, Affinda can transform unstructured data into structured, actionable insights. With Pipedream, you can integrate Affinda's capabilities into serverless workflows, connecting to hundreds of apps to automate tasks like candidate screening, financial data aggregation, or content management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
affinda: {
type: "app",
app: "affinda",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.affinda.$auth.api}.affinda.com/v3/organizations`,
headers: {
Authorization: `Bearer ${this.affinda.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})