UNPKG

n8n-nodes-firecrawl

Version:
35 lines 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FireCrawlApi = void 0; class FireCrawlApi { constructor() { this.name = 'fireCrawlApi'; this.displayName = 'FireCrawl API'; this.documentationUrl = 'https://docs.firecrawl.dev/introduction#api-key'; this.properties = [ { displayName: 'Base URL', name: 'baseUrl', type: 'string', default: 'https://api.firecrawl.dev/v1', }, { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', }, ]; this.authenticate = { type: 'generic', properties: { headers: { Authorization: '=Bearer {{$credentials.apiKey}}', }, }, }; } } exports.FireCrawlApi = FireCrawlApi; //# sourceMappingURL=FireCrawlApi.credentials.js.map