What can you build with the Reply API? The possibilities are endless! Reply is Used to power conversational Interfaces, AI Automation, and data enrichment operations within many modern apps, websites, and services. It can be used to create interactive chatbots, natural language processing, entity recognition, and more.
Here are some examples of what you can build using the Reply API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
reply: {
type: "app",
app: "reply",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://api.reply.io/v1/people`,
params: {
apiKey: `${this.reply.$auth.api_key}`,
},
})
},
})
Reply uses API keys for authentication. When you connect your Reply account, Pipedream securely stores the keys so you can easily authenticate to Reply APIs in both code and no-code steps.
To access the API, you need the API key located under Settings - API Key