With the Lusha API you can build a wide range of applications and integrations including:
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`,
},
})
},
})
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.