with Polymer.co and Soax?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polymer_co: {
type: "app",
app: "polymer_co",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.polymer.co/v1/hire/organizations/${this.polymer_co.$auth.org_slug}/jobs`,
headers: {
"content-type": `application/json`,
},
})
},
})
The Soax API provides access to a robust proxy and scraping service that allows users to gather data efficiently and safely from across the web. By leveraging Soax’s rotating proxies, you can access and retrieve data without triggering anti-scraping measures, making it useful for tasks like competitive analysis, market research, SEO monitoring, and more. Integrating Soax with Pipedream enhances these capabilities by automating data collection workflows, enriching the data with other services, and triggering actions based on the retrieved data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapein_: {
type: "app",
app: "scrapein_",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapein.app/v1/`,
params: {
apikey: `${this.scrapein_.$auth.api_key}`,
url: `https://dashboard.scrapein.app/testdata.html`,
},
})
},
})