Extract Web Content Instantly: No Coding, Just URL and Columns!
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,
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})