with SERPhouse and Zoho FMS?
The SERPhouse API provides a way to fetch real-time search engine results pages (SERPs) from Google and Bing. With it, you can gather SEO data, monitor keyword rankings, and gain insights into search trends. On Pipedream, you can leverage this API to build serverless workflows that automate SEO tasks, conduct competitive analysis, and integrate with other apps to enhance your digital marketing strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
serphouse: {
type: "app",
app: "serphouse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.serphouse.com/account/info`,
headers: {
Authorization: `Bearer ${this.serphouse.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_fms: {
type: "app",
app: "zoho_fms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://fsm.${this.zoho_fms.$auth.api_domain}/fsm/v1/users`,
headers: {
Authorization: `Bearer ${this.zoho_fms.$auth.oauth_access_token}`,
},
})
},
})