Use the easiest to manage and most widely supported network virtualization platform to connect all your devices, cloud VMs, and apps as if the whole world is one big cloud region!
Go to siteWith the ZeroTier API, you can create powerful zero-trust networks across applications, subsystems, devices, and end-users. The API lets you control and monitor all of the different components that make up a ZeroTier network, empowering you to build powerful networking solutions. Below are some examples of what you can build using the ZeroTier API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zerotier: {
type: "app",
app: "zerotier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.zerotier.com/api/v1/org`,
headers: {
Authorization: `Bearer ${this.zerotier.$auth.api_token}`,
},
})
},
})
Authorize a specific member (node) in a network. See docs here
Delete a specific member (node) in a network. See docs here
Get the overall account status. Returns the overall status of the account tied to the API token in use. See docs here
ZeroTier uses API keys for authentication. When you connect your ZeroTier account, Pipedream securely stores the keys so you can easily authenticate to ZeroTier APIs in both code and no-code steps.
To retrieve your API Token,