Find Company Identity

Find any company's website URL, LinkedIn profile URL, and cleaned name.

29 Nov 2025

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)

links

social