Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Scans a webpage for AI generated content. See the documentation
Scans a string for plagiarism as well as readability. See the documentation
Send a simple or structured message (using embeds) to a Discord channel
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})