Nextdns integration
NextDNS is a DNS service that enhances internet security and privacy by…
- Provider
- nextdns
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 68 available
Quick start
Call Nextdns from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Nextdns's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"NEXTDNS_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Nextdns API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
68 actions exposed via the
Nextdns integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NEXTDNS_ADD_ALLOWLIST_ENTRY -
NEXTDNS_ADD_BLOCKED_TLD -
NEXTDNS_ADD_DENYLIST_DOMAIN -
NEXTDNS_ADD_PARENTAL_CONTROL_CATEGORY -
NEXTDNS_ADD_PARENTAL_CONTROL_SERVICE -
NEXTDNS_ADD_PRIVACY_BLOCKLIST -
NEXTDNS_ADD_PRIVACY_NATIVE -
NEXTDNS_ADD_REWRITE -
NEXTDNS_CLEAR_LOGS -
NEXTDNS_CREATE_PROFILE -
NEXTDNS_DELETE_ALLOWLIST_ENTRY -
NEXTDNS_DELETE_CONFIG
Show all 68 actions
-
NEXTDNS_DELETE_PARENTAL_CONTROL_CATEGORY -
NEXTDNS_DELETE_PARENTAL_CONTROL_SERVICE -
NEXTDNS_DELETE_PRIVACY_BLOCKLIST -
NEXTDNS_DELETE_PRIVACY_NATIVE -
NEXTDNS_DELETE_REWRITE -
NEXTDNS_DOWNLOAD_LOGS -
NEXTDNS_GET_ALLOWLIST -
NEXTDNS_GET_ANALYTICS_DESTINATIONS -
NEXTDNS_GET_ANALYTICS_DEVICES2 -
NEXTDNS_GET_ANALYTICS_DNSSEC -
NEXTDNS_GET_ANALYTICS_DOMAINS -
NEXTDNS_GET_ANALYTICS_ENCRYPTION -
NEXTDNS_GET_ANALYTICS_IPS -
NEXTDNS_GET_ANALYTICS_IP_VERSIONS -
NEXTDNS_GET_ANALYTICS_PROTOCOLS -
NEXTDNS_GET_ANALYTICS_QUERY_TYPES -
NEXTDNS_GET_ANALYTICS_REASONS2 -
NEXTDNS_GET_ANALYTICS_STATUS -
NEXTDNS_GET_LOGS -
NEXTDNS_GET_PARENTAL_CONTROL -
NEXTDNS_GET_PARENTAL_CONTROL_CATEGORIES -
NEXTDNS_GET_PARENTAL_CONTROL_SERVICES -
NEXTDNS_GET_PERFORMANCE_SETTINGS -
NEXTDNS_GET_PRIVACY_SETTINGS -
NEXTDNS_GET_PROFILE -
NEXTDNS_GET_REWRITES -
NEXTDNS_GET_SECURITY_TLDS -
NEXTDNS_GET_SETTINGS -
NEXTDNS_GET_SETTINGS_BLOCKPAGE -
NEXTDNS_GET_SETTINGS_LOGS -
NEXTDNS_LIST_DENYLIST_DOMAINS -
NEXTDNS_LIST_PROFILES -
NEXTDNS_LIST_SECURITY_SETTINGS -
NEXTDNS_LOG_CLIENT_IPS -
NEXTDNS_LOG_DOMAINS -
NEXTDNS_REMOVE_BLOCKED_TLD -
NEXTDNS_REMOVE_DENYLIST_DOMAIN -
NEXTDNS_RENAME_CONFIG -
NEXTDNS_REPLACE_ALLOWLIST -
NEXTDNS_REPLACE_DENYLIST -
NEXTDNS_REPLACE_PARENTAL_CONTROL_CATEGORIES -
NEXTDNS_REPLACE_PARENTAL_CONTROL_SERVICES -
NEXTDNS_REPLACE_PRIVACY_BLOCKLISTS -
NEXTDNS_REPLACE_PRIVACY_NATIVES -
NEXTDNS_REPLACE_SECURITY_TLDS -
NEXTDNS_UPDATE_ALLOWLIST_ENTRY -
NEXTDNS_UPDATE_DENYLIST_ENTRY -
NEXTDNS_UPDATE_LINKED_IP -
NEXTDNS_UPDATE_PARENTAL_CONTROL -
NEXTDNS_UPDATE_PARENTAL_CONTROL_CATEGORY -
NEXTDNS_UPDATE_PARENTAL_CONTROL_SERVICE -
NEXTDNS_UPDATE_PERFORMANCE_SETTINGS -
NEXTDNS_UPDATE_PRIVACY_SETTINGS -
NEXTDNS_UPDATE_SECURITY_SETTINGS -
NEXTDNS_UPDATE_SETTINGS -
NEXTDNS_UPDATE_SETTINGS_BLOCKPAGE
Build with Nextdns
Open OverSkill, describe what you want to build, and reference Nextdns in your prompt — the AI will wire up the integration automatically.