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,
})
},
})
Submit a website URL for categorization by the API. See the documentation.
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.
Klazify uses API keys for authentication. When you connect your Klazify account, Pipedream securely stores the keys so you can easily authenticate to Klazify APIs in both code and no-code steps.
Sign in and copy your API key directly from your dashboard.