Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Emit new event for each new or modified record in a view
Get the definition for an English word. See docs here
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})
The Free Dictionary API provides a straightforward way to access dictionary definitions, synonyms, antonyms, and translations for words in multiple languages. With it, you can fetch detailed word meanings, usage examples, and phonetic transcriptions, enabling a variety of educational and linguistic automation opportunities on Pipedream. This API is valuable for developers looking to create language learning tools, content enrichment services, or to simply integrate rich lexical data into their applications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dictionary_api: {
type: "app",
app: "dictionary_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dictionaryapi.dev/api/v2/entries/en/<word>`,
})
},
})