The new firewall for the modern Internet. NextDNS protects you from all kinds of security threats, blocks ads and trackers on websites and in apps and provides a safe and supervised Internet for kids — on all devices and on all networks.
Go to siteNextDNS provides an API that developers can use to programmatically manage DNS records for their domains. This provides a way to automate tasks such as adding new records when a website is created, or removing old records when a website is taken down.
Here are some examples of what you can build using the NextDNS API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nextdns: {
type: "app",
app: "nextdns",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nextdns.io/profiles/abc123`,
headers: {
"X-Api-Key": `${this.nextdns.$auth.api_key}`,
},
})
},
})
NextDNS uses API keys for authentication. When you connect your NextDNS account, Pipedream securely stores the keys so you can easily authenticate to NextDNS APIs in both code and no-code steps.
Find your API key at the bottom of your account page: https://my.nextdns.io/account