with Originality.ai and Logo.dev?
Scans a webpage for AI generated content. See the documentation
Scans a string for plagiarism as well as readability. See the documentation
The Originality.ai API provides functionality to check content for potential plagiarism and AI-generated text. Within Pipedream's serverless environment, you can construct workflows that automate the process of evaluating originality in large volumes of text, integrate plagiarism checks into content pipelines, and flag content for further review. By leveraging this API in Pipedream, you can harness event-driven, scalable workflows to ensure content integrity across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
originality_ai: {
type: "app",
app: "originality_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.originality.ai/api/v1/account/credits/balance`,
headers: {
"X-OAI-API-KEY": `${this.originality_ai.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
logo_dev: {
type: "app",
app: "logo_dev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.logo.dev/search`,
headers: {
Authorization: `Bearer ${this.logo_dev.$auth.secret_key}`,
},
params: {
"q": `Funko`,
},
})
},
})