Rated #1 Best AI Detector by Forbes! Use our AI detector to check if your text will be flagged as AI-written content.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
undetectable_ai: {
type: "app",
app: "undetectable_ai",
}
},
async run({steps, $}) {
const data = {
"content": `Pipedream is a platform that allows developers to connect APIs, AI, databases, and more. It provides a fast way to build powerful applications that integrate all the services in your stack.`,
"readability": "High School",
"purpose": "General Writing",
"strength": "More Human"
};
return await axios($, {
method: "post",
url: `https://api.undetectable.ai/submit`,
headers: {
"api-key": `${this.undetectable_ai.$auth.api_key}`,
},
data,
})
},
})
Retrieve the IDs of documents associated with your account. See the documentation
Retrieve the document object for a submitted piece of content. See the documentation
Undetectable AI uses API keys for authentication. When you connect your Undetectable AI account, Pipedream securely stores the keys so you can easily authenticate to Undetectable AI APIs in both code and no-code steps.