29 Nov 2025

Pipe0: company:identity@1
Documentation for the data enrichment function with the id 'company:identity@1'
import requests
url = "https://api.pipe0.com/v1/pipes/run"
payload = {
"config": { "environment": "production" },
"pipes": [{ "pipe_id": "company:identity@1" }],
"input": [
{
"id": "1",
"company_name": "Pipe0"
}
]
}
headers = {
"content-type": "application/json",
"authorization": "Bearer <TOKEN>"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)