Lusha

B2B Lead Enrichment in a Click

Go to site

Lusha API Integrations

Build and run workflows using the Lusha 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 Lusha API you can build a wide range of applications and integrations including:

  • A tool to find contact information for a given company
  • A search engine to help find specific contacts within a company
  • An application to track the contact information of key individuals within a company
  • A system to keep track of employee contact information changes
  • An analytics tool to help improve the accuracy of contact information
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    lusha: {
      type: "app",
      app: "lusha",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lusha.com/person`,
      headers: {
        "api_key": `${this.lusha.$auth.api_key}`,
      },
      params: {
        firstName: `Rob`,
        lastName: `Taylor`,
        company: `intercom`,
      },
    })
  },
})
Find Company with Lusha API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Lusha
 
Try it
Find Company with Lusha API on New Message from Discord API
Discord + Lusha
 
Try it
Find Company with Lusha API on New Message In Channels from Slack API
Slack + Lusha
 
Try it
Find Company with Lusha API on New Message in Channel from Discord Bot API
Discord Bot + Lusha
 
Try it
Find Company with Lusha API on New Submission from Typeform API
Typeform + Lusha
 
Try it
Find Company with the Lusha API

Search for a company. See docs here

 
Try it
Find Contact with the Lusha API

Search for a contact. See docs here

 
Try it

Authentication

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

Requests are authenticated by your API key. See docs.