With the Bruzu API, you can build applications that allow users to find and book appointments with local businesses. You can also use the API to search for businesses and get detailed information about them, including ratings and reviews.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bruzu: {
type: "app",
app: "bruzu",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://img.bruzu.com/`,
params: {
template: `15`,
"top.text": `Reminder`,
"middle.text": `This%2520too%2520shall%2520pass`,
"bottom.text": `OK`,
"": ``,
"": ``,
},
})
},
})
Bruzu uses API keys for authentication. When you connect your Bruzu account, Pipedream securely stores the keys so you can easily authenticate to Bruzu APIs in both code and no-code steps.