Quickstart
Before making your first request, the following is required:
👾 Create an account
🔑 Go to “settings” → “api keys” and “create” a key
💳 Buy a subscription to make requests in production mode
Making requests
This request enriches one input object. The pipe people:workemail:waterfall@1
adds a field called work_email
to your input objects.
const result = await fetch("https://api.pipe0.com/v1/pipes/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
config: {
environemnt: "production",
},
pipes: [
{
pipe_id: "people:workemail:waterfall@1"
},
],
input: [
{
id: 1,
name: "John Doe",
company_website_url: "https://pipe0.com"
}
]
})
});
The result will look something like this:
[
{
"id": 1,
"name": "John Doe",
"company_website_url": "https://pipe0.com",
"work_email": "john@pipe0.com"
}
]
You can also try to find information like phone numbers and company details within the same request. For this, you can chain multiple enrichment pipes.
Note
The response will contain more information than displayed here. Learn how to work with response objects.
Helpful Links
Last updated on