A very simple Open Graph API. Don't waste time and resources scraping sites or trying to unfurl urls.
Go to siteimport { 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}`,
},
})
},
})
Scrape OpenGraph data from a list of URLs at once, to process multiple websites simultaneously. See the docs here
Extract specific OpenGraph properties from a specified URL, such as title, image, or description. See the docs here
Retrieve OpenGraph data from a specified URL using the OpenGraph.io API. See the docs here
OpenGraph.io uses API keys for authentication. When you connect your OpenGraph.io account, Pipedream securely stores the keys so you can easily authenticate to OpenGraph.io APIs in both code and no-code steps.
Sign in and copy your API key from the OpenGraph.io dashboard.