Leadpops

leadPops is the easiest way for mortgage pros, real estate agents, and insurance agents to generate more quality leads, no setup required.

Go to site
Explore
/
Apps
/
Leadpops

Leadpops API Integrations

Build and run workflows using the Leadpops API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Leadpops API, you can build a variety of tools to help you generate and manage leads. Here are just a few examples:

  • A lead capture form that automatically adds new leads to your Leadpops account
  • A lead management tool that allows you to view, edit, and delete leads
  • A lead enrichment tool that allows you to add additional information to your leads
  • A lead tracking tool that allows you to see which leads have been contacted and which have not
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    leadpops: {
      type: "app",
      app: "leadpops",
    }
  },
  async run({steps, $}) {
    const data = {
      "funnel": `SalCompany.clixwithus.com`,
      "from_date": `2022-03-20`,
      "to_date": `2022-03-20`,
      "limit": `100`,
    }
    return await axios($, {
      method: "post",
      url: `http://api.leadpops.com/api/v1/leads`,
      headers: {
        "Content-Type": `application/json`,
        "leadpops-authorization": `${this.leadpops.$auth.api_key}`,
      },
      data,
    })
  },
})

Authentication

Leadpops uses API keys for authentication. When you connect your Leadpops account, Pipedream securely stores the keys so you can easily authenticate to Leadpops APIs in both code and no-code steps.

To retrieve your API key,
Navigate to your LeadPops account and sign in

  • Click “Lead Funnels” on the left bar and select any funnel
  • Go to “Edit” > “Integrations” > “Integrations” > “API AUTHORIZATION KEY”