A very simple Open Graph API. Don't waste time and resources scraping sites or trying to unfurl urls.
Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.
Emit new event when a page or one of its sub-pages is updated.
Emit new event when a page in a database is updated. To select a specific page, use Updated Page ID
instead
Scrape OpenGraph data from a list of URLs at once, to process multiple websites simultaneously. See the docs here
Creates and appends blocks to the specified parent. See the documentation
Extract specific OpenGraph properties from a specified URL, such as title, image, or description. See the docs here
Creates a page from a parent page. The only valid property is title. See the documentation
Retrieve OpenGraph data from a specified URL using the OpenGraph.io API. See the docs here
The OpenGraph.io API enables you to fetch Open Graph data from websites, which is useful for previewing content like images, titles, and descriptions the way social platforms do. Integrating OpenGraph.io with Pipedream allows you to automate the retrieval of this data in response to various triggers and to use it in workflows that involve other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
opengraph_io: {
type: "app",
app: "opengraph_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://opengraph.io/api/1.1/site/https%3A%2F%2Fpipedream.com`,
params: {
app_id: `${this.opengraph_io.$auth.api_key}`,
},
})
},
})
Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notion: {
type: "app",
app: "notion",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.notion.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
"Notion-Version": `2021-08-16`,
},
})
},
})