import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
parsera: {
type: "app",
app: "parsera",
}
},
async run({steps, $}) {
const data = {
"url": "https://news.ycombinator.com/",
"attributes": [
{
"name": "Title",
"description": "News title"
},
{
"name": "Points",
"description": "Number of points"
}
]
}
return await axios($, {
method: "POST",
url: `https://api.parsera.org/v1/extract`,
headers: {
"X-API-KEY": `${this.parsera.$auth.api_key}`,
"Accept": `application/json`,
},
data,
})
},
})
Parsera uses API keys for authentication. When you connect your Parsera account, Pipedream securely stores the keys so you can easily authenticate to Parsera APIs in both code and no-code steps.