Retrieve attributes to uniquely identity a company. This includes its website URL, LinkedIn profile, and cleaned name.
const result = await fetch("https://api.pipe0.com/v1/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
pipes: [{
pipe_id: "company:identity@1",
}],
input: []
})
});