Where programmers share ideas and help each other grow.
Emit new event for each new story that has a matching tag (e.g., javascript)
Emit new event for each new article published on your Dev.to account
Emit new event for each new reading list item on your Dev.to account
Emit an event for each new or modified record in a table
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Retrieve records from a table with automatic pagination. Optionally sort and filter results.
Retrieve records in a view with automatic pagination. Optionally sort and filter results.
With the Dev.to API, you can build applications that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dev_to: {
type: "app",
app: "dev_to",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://dev.to/api/articles/me`,
headers: {
"api-key": `${this.dev_to.$auth.api_key}`,
},
})
},
})
Using the Airtable API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable: {
type: "app",
app: "airtable",
},
baseId: {
type: "$.airtable.baseId",
appProp: "airtable",
},
tableId: {
type: "$.airtable.tableId",
baseIdProp: "baseId",
},
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/${this.baseId}/${this.tableId}`,
headers: {
Authorization: `Bearer ${this.airtable.$auth.api_key}`,
"accept": `application/json`,
},
})
}
})