with Grab Your Reviews and ContactOut?
Get company profiles matching the search criteria. See the documentation
Get profiles of key decision makers within a specified company. See the documentation
Find LinkedIn profile from email address. See the documentation
Get profile details for a LinkedIn profile using either a LinkedIn URL or email address. See the documentation
Get company information from domain names. See the documentation
The Grab Your Reviews API opens a door to collect and manage customer feedback from multiple review platforms. It offers programmatic access to manipulate and retrieve reviews, respond to customer feedback, and analyze sentiment across different services. Within Pipedream, you can seamlessly integrate these capabilities into workflows, triggering actions based on new reviews, syncing data across databases or CRMs, and deriving insights by connecting to analytics tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
grab_your_reviews: {
type: "app",
app: "grab_your_reviews",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.grabyourreviews.com/profile_list`,
headers: {
"Content-Type": `application/json`,
},
params: {
api_token: `${this.grab_your_reviews.$auth.access_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
contactout: {
type: "app",
app: "contactout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.contactout.com/v1/stats`,
headers: {
"token": `${this.contactout.$auth.api_key}`,
},
params: {
period: `2025-06`,
},
})
},
})