with ProProfs Knowledge Base and Raven Tools?
Emit new event for each keyword added to a domain See docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proprofs_knowledge_base: {
type: "app",
app: "proprofs_knowledge_base",
}
},
async run({steps, $}) {
const data = {
"action": `gettoc`,
"api_key": `${this.proprofs_knowledge_base.$auth.api_key}`,
"node_id": `0`,
"type": `all`,
}
return await axios($, {
method: "post",
url: `https://www.helpdocsonline.com/proprofsapi/v1/`,
data,
})
},
})
Raven Tools is a comprehensive suite of SEO tools that helps marketers to conduct audits, track search engine rankings, and analyze competitors' strategies. With the Raven Tools API, one can programmatically access this wealth of SEO data and generate reports, manage link building campaigns, and monitor keyword rankings. Leveraging the Pipedream platform, you can create automated workflows that react to various triggers and connect Raven Tools with other services to streamline SEO processes, enhance data analysis, and improve decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
raven_tools: {
type: "app",
app: "raven_tools",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.raventools.com/api`,
params: {
key: `${this.raven_tools.$auth.api_key}`,
method: `profile_info`,
format: `json`,
},
})
},
})