Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Generate a chat completion based on the provided messages. See the documentation
Writer API lets you automate content creation, ensuring your text adheres to certain style guides and writing rules. With Pipedream, you can build workflows integrating Writer to check grammar, enhance clarity, and maintain brand voice across various platforms. By connecting Writer with numerous apps supported by Pipedream, you can streamline content workflows, enforce consistency, and save time on content editing and approval processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
writer: {
type: "app",
app: "writer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.writer.com/v1/models`,
headers: {
Authorization: `Bearer ${this.writer.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})