APIs that make your app understand language. Summarize conversations, categorize articles, and more.
One AI API enables users to leverage advanced language AI to analyze and process text. On Pipedream, you can integrate One AI into serverless workflows to automate tasks like content summarization, emotion detection, or keyword extraction. By tapping into One AI's capabilities via Pipedream, you can enrich data, glean insights, and streamline content-centric operations with ease and efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
one_ai: {
type: "app",
app: "one_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.oneai.com/api/v0/org/info`,
headers: {
"api-key": `${this.one_ai.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})