LeadBoxer

Lead generation platform that gives you real-time info about companies and people that visit your website. Turning anonymous web traffic into actionable data.

Go to site
Explore
/
Apps
/
LeadBoxer

LeadBoxer API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    leadboxer: {
      type: "app",
      app: "leadboxer",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://kibana.leadboxer.com/api/views/c_view_leads`,
      headers: {
        "Content-Type": `application/json`,
      },
      params: {
        apiKey: `${this.leadboxer.$auth.api_key}`,
        site: `${this.leadboxer.$auth.dataset_id}`,
      },
    })
  },
})

Authentication

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

To retrieve your API Key,

  • Navigate to your LeadBoxer account and sign in
  • Click the User dropdown on the top right
  • Go to “Integrations” > “api”

Sign in and copy your Dataset ID from the LeadBoxer dashboard.