n8n-nodes-duckduckgo-search
Version:
Integrate DuckDuckGo search seamlessly into your n8n workflows with advanced pagination and human-like behavior. Get more results without hitting rate limits.
25 lines (24 loc) • 755 B
JavaScript
;
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;