import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
spiritme: {
type: "app",
app: "spiritme",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.spiritme.tech/api/users/current/`,
headers: {
"Authorization": `Token ${this.spiritme.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
Emit new event when an avatar video completes rendering.
Generates a new video using specific voice and avatar props. See the documentation
SpiritMe uses API keys for authentication. When you connect your SpiritMe account, Pipedream securely stores the keys so you can easily authenticate to SpiritMe APIs in both code and no-code steps.