Automate your customer support with ChatGPT. SiteSpeakAI helps you create a custom trained AI powered support chatbot for your business or website.
Emit new event when a new lead is created in SiteSpeakAI. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Queries your chatbot and returns the answer and URLs used to find the answer. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
SiteSpeakAI is a versatile API that brings voice to your digital spaces. You can use it to convert text into lifelike spoken audio in various languages and dialects. With Pipedream, you can automate and integrate this capability into various workflows, reacting to events, processing data, and connecting with other APIs or services. Whether to enhance user experience with voice responses, create audio content dynamically, or provide accessibility features, SiteSpeakAI opens up a world of audio interaction possibilities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sitespeakai: {
type: "app",
app: "sitespeakai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sitespeak.ai/v1/me`,
headers: {
Authorization: `Bearer ${this.sitespeakai.$auth.api_token}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})