The Purple Sonar API allows developers to quickly create custom audio processing applications. With its powerful and sophisticated algorithms, the API allows for a wide range of audio processing applications such as speech recognition, music analysis, audio processing, and more.
Here are some examples of what you can build with the Purple Sonar API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sonar: {
type: "app",
app: "sonar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-public.purplesonar.com/api/v1/enrich/domain/google.com`,
headers: {
Authorization: `Bearer ${this.sonar.$auth.api_key}`,
},
})
},
})
Purple Sonar uses API keys for authentication. When you connect your Purple Sonar account, Pipedream securely stores the keys so you can easily authenticate to Purple Sonar APIs in both code and no-code steps.
Your key can be found on the integrations page.