with Extensiv Integration Manager and ScrapeGraphAI?
Extract content from HTML content using AI by providing a natural language prompt and the HTML content. See the documentation
Convert any webpage into clean, readable Markdown format. See the documentation
Extract content from a webpage using AI by providing a natural language prompt and a URL. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
extensiv_integration_manager: {
type: "app",
app: "extensiv_integration_manager",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cartrover.com/v1/merchant/inventory`,
auth: {
username: `${this.extensiv_integration_manager.$auth.cartapi_api_user}`,
password: `${this.extensiv_integration_manager.$auth.cartapi_api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapegraphai: {
type: "app",
app: "scrapegraphai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapegraphai.com/v1/credits`,
headers: {
"sgai-apikey": `${this.scrapegraphai.$auth.api_key}`,
},
})
},
})