with DataForSEO and Selzy?
Description for get-ranked-keywords. See the documentation
The DataForSEO API offers a robust suite of tools for SEO analytics and research, providing data on rankings, keywords, competitor analysis, and SERP features. Integrating DataForSEO with Pipedream enables you to automate the collection of SEO data, monitor keyword positions, trigger actions based on SEO insights, and enrich your marketing or analytics platforms with up-to-date search data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dataforseo: {
type: "app",
app: "dataforseo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dataforseo.com/v3/appendix/user_data`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.dataforseo.$auth.api_login}`,
password: `${this.dataforseo.$auth.api_password}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
selzy: {
type: "app",
app: "selzy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.selzy.com/en/api/getCampaigns`,
params: {
format: `json`,
api_key: `${this.selzy.$auth.api_key}`,
},
})
},
})