The most accurate Content Classification API.
Submit a website URL for categorization by the API. See the documentation.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Get information about a company's domain. See the documentation.
Get the expiration date of a domain. See the documentation.
Get the technology stack of a domain. See the documentation.
The Klazify API offers a way to classify websites into categories, discover company logo URLs, and access social media links from a domain. When integrated into Pipedream, this functionality can expand, allowing you to automate workflows for marketing analysis, content filtering, or business intelligence. You can trigger actions based on website categories, enrich CRM data with company logos, or compile lists of social media profiles for outreach.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klazify: {
type: "app",
app: "klazify",
}
},
async run({steps, $}) {
const data = {
"url": `{your_url}`,
}
return await axios($, {
method: "post",
url: `https://www.klazify.com/api/categorize`,
headers: {
Authorization: `Bearer ${this.klazify.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
data,
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}