What do you want to automate

with Grab Your Reviews and ContactOut?

Prompt, edit and deploy AI agents that connect to Grab Your Reviews, ContactOut and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Company Search with the ContactOut API

Get company profiles matching the search criteria. See the documentation

 
Try it
Decision Makers Search with the ContactOut API

Get profiles of key decision makers within a specified company. See the documentation

 
Try it
Email To LinkedIn with the ContactOut API

Find LinkedIn profile from email address. See the documentation

 
Try it
Enrich LinkedIn Profile with the ContactOut API

Get profile details for a LinkedIn profile using either a LinkedIn URL or email address. See the documentation

 
Try it
Get Company Information with the ContactOut API

Get company information from domain names. See the documentation

 
Try it
Integrate the Grab Your Reviews API with the ContactOut API
Setup the Grab Your Reviews API trigger to run a workflow which integrates with the ContactOut API. Pipedream's integration platform allows you to integrate Grab Your Reviews and ContactOut remarkably fast. Free for developers.

Overview of Grab Your Reviews

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.

Connect Grab Your Reviews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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}`,
      },
    })
  },
})

Connect ContactOut

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo