with TXT Werk and Osu!?
The TXT Werk API specializes in advanced natural language processing, providing tools for text analysis such as entity recognition, sentiment analysis, and keyword extraction. Integrating TXT Werk with Pipedream allows users to automate workflows involving text data enrichment and analysis, transforming unstructured text into actionable insights. This integration can enhance applications in content moderation, market research, and customer feedback analysis by automatically processing text data from various sources.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
txt_werk: {
type: "app",
app: "txt_werk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.txtwerk.de/rest/txt/analyzer`,
headers: {
"X-Api-Key": `${this.txt_werk.$auth.api_key}`,
},
params: {
text: `Pipedream is an integration platform for developers.`,
services: `categories`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
osu: {
type: "app",
app: "osu",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://osu.ppy.sh/api/v2/me`,
headers: {
Authorization: `Bearer ${this.osu.$auth.oauth_access_token}`,
"accept": `application/json`,
"content-type": `application/json`,
},
})
},
})