Tools and reports help you measure your site's Search traffic
The Google Search Console API opens a treasure trove of data and insights about your website’s presence in Google Search results. You can get detailed reports on your site's search traffic, manage and test your site's sitemaps and robots.txt files, and see which queries bring users to your site. On Pipedream, utilize this API to automate checks on site performance, integrate with other tools for deeper analysis, or keep tabs on your SEO strategy's effectiveness.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_search_console: {
type: "app",
app: "google_search_console",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/webmasters/v3/sites`,
headers: {
Authorization: `Bearer ${this.google_search_console.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
onelogin: {
type: "app",
app: "onelogin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.onelogin.$auth.subdomain}.onelogin.com/auth/rate_limit`,
headers: {
Authorization: `Bearer ${this.onelogin.$auth.oauth_access_token}`,
},
})
},
})