UNPKG

n8n-nodes-duckduckgo-search

Version:

A powerful and comprehensive n8n community node that seamlessly integrates DuckDuckGo search capabilities into your workflows. Search the web, find images, discover news, and explore videos - all with privacy-focused, reliable results.

25 lines (24 loc) 755 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DuckDuckGoApi = void 0; class DuckDuckGoApi { constructor() { this.name = 'duckDuckGoApi'; this.displayName = 'DuckDuckGo API'; this.documentationUrl = 'https://duckduckgo.com/api'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', default: '', required: true, typeOptions: { password: true, }, description: 'The API key for DuckDuckGo API access', }, ]; } } exports.DuckDuckGoApi = DuckDuckGoApi;