with Hamsa and Tumblr?
Transform transcribed content into various formats for content marketing. See the documentation
Converts text input into artificial speech using Hamsa. See the documentation
Automatically transcribe Arabic videos from YouTube URLs or direct links. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hamsa: {
type: "app",
app: "hamsa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tryhamsa.com/v1/projects/by-api-key`,
headers: {
"authorization": `Token ${this.hamsa.$auth.api_key}`,
},
})
},
})
The Tumblr API on Pipedream allows you to automate interactions with your Tumblr account, like posting content, managing posts, and interacting with followers. By leveraging this API, you can craft workflows that streamline your social media strategies, analyze engagement, and connect your Tumblr activities with other tools and platforms. Whether you're looking to auto-post content across different networks, analyze post metrics, or curate content based on specific criteria, the Tumblr API paired with Pipedream’s serverless execution model paves the way for powerful automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tumblr: {
type: "app",
app: "tumblr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tumblr.com/v2/blog/good.tumblr.com/info`,
params: {
api_key: `${this.tumblr.$auth.api_key}`,
},
})
},
})