n8n-nodes-siftingio 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +108 -0
  3. package/dist/credentials/SiftingIoApi.credentials.d.ts +9 -0
  4. package/dist/credentials/SiftingIoApi.credentials.js +44 -0
  5. package/dist/credentials/SiftingIoApi.credentials.js.map +1 -0
  6. package/dist/nodes/SiftingIo/SiftingIo.node.d.ts +4 -0
  7. package/dist/nodes/SiftingIo/SiftingIo.node.js +85 -0
  8. package/dist/nodes/SiftingIo/SiftingIo.node.js.map +1 -0
  9. package/dist/nodes/SiftingIo/SiftingIo.node.json +18 -0
  10. package/dist/nodes/SiftingIo/descriptions/ConvertDescription.d.ts +3 -0
  11. package/dist/nodes/SiftingIo/descriptions/ConvertDescription.js +59 -0
  12. package/dist/nodes/SiftingIo/descriptions/ConvertDescription.js.map +1 -0
  13. package/dist/nodes/SiftingIo/descriptions/DexWalletDescription.d.ts +3 -0
  14. package/dist/nodes/SiftingIo/descriptions/DexWalletDescription.js +55 -0
  15. package/dist/nodes/SiftingIo/descriptions/DexWalletDescription.js.map +1 -0
  16. package/dist/nodes/SiftingIo/descriptions/DiscoveryDescription.d.ts +3 -0
  17. package/dist/nodes/SiftingIo/descriptions/DiscoveryDescription.js +60 -0
  18. package/dist/nodes/SiftingIo/descriptions/DiscoveryDescription.js.map +1 -0
  19. package/dist/nodes/SiftingIo/descriptions/EconomicCalendarDescription.d.ts +3 -0
  20. package/dist/nodes/SiftingIo/descriptions/EconomicCalendarDescription.js +108 -0
  21. package/dist/nodes/SiftingIo/descriptions/EconomicCalendarDescription.js.map +1 -0
  22. package/dist/nodes/SiftingIo/descriptions/FilingDescription.d.ts +3 -0
  23. package/dist/nodes/SiftingIo/descriptions/FilingDescription.js +134 -0
  24. package/dist/nodes/SiftingIo/descriptions/FilingDescription.js.map +1 -0
  25. package/dist/nodes/SiftingIo/descriptions/FilingTextDescription.d.ts +3 -0
  26. package/dist/nodes/SiftingIo/descriptions/FilingTextDescription.js +91 -0
  27. package/dist/nodes/SiftingIo/descriptions/FilingTextDescription.js.map +1 -0
  28. package/dist/nodes/SiftingIo/descriptions/FinancialsDescription.d.ts +3 -0
  29. package/dist/nodes/SiftingIo/descriptions/FinancialsDescription.js +123 -0
  30. package/dist/nodes/SiftingIo/descriptions/FinancialsDescription.js.map +1 -0
  31. package/dist/nodes/SiftingIo/descriptions/HistoricalDescription.d.ts +3 -0
  32. package/dist/nodes/SiftingIo/descriptions/HistoricalDescription.js +142 -0
  33. package/dist/nodes/SiftingIo/descriptions/HistoricalDescription.js.map +1 -0
  34. package/dist/nodes/SiftingIo/descriptions/HoldingsDescription.d.ts +3 -0
  35. package/dist/nodes/SiftingIo/descriptions/HoldingsDescription.js +66 -0
  36. package/dist/nodes/SiftingIo/descriptions/HoldingsDescription.js.map +1 -0
  37. package/dist/nodes/SiftingIo/descriptions/LiveDescription.d.ts +3 -0
  38. package/dist/nodes/SiftingIo/descriptions/LiveDescription.js +141 -0
  39. package/dist/nodes/SiftingIo/descriptions/LiveDescription.js.map +1 -0
  40. package/dist/nodes/SiftingIo/descriptions/MarketDescription.d.ts +3 -0
  41. package/dist/nodes/SiftingIo/descriptions/MarketDescription.js +116 -0
  42. package/dist/nodes/SiftingIo/descriptions/MarketDescription.js.map +1 -0
  43. package/dist/nodes/SiftingIo/shared.d.ts +6 -0
  44. package/dist/nodes/SiftingIo/shared.js +68 -0
  45. package/dist/nodes/SiftingIo/shared.js.map +1 -0
  46. package/dist/nodes/SiftingIo/siftingio.svg +38 -0
  47. package/dist/package.json +65 -0
  48. package/index.js +3 -0
  49. package/package.json +65 -0
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 SiftingIO
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,108 @@
1
+ # n8n-nodes-siftingio
2
+
3
+ This is an [n8n](https://n8n.io/) community node. It lets you use the
4
+ [SiftingIO](https://sifting.io) financial-data API in your n8n workflows.
5
+
6
+ SiftingIO is a market data API for financial applications, automation workflows, and AI agents. It provides real-time and historical data across stocks, forex, crypto, commodities, DEX datasets, fundamentals, market news, market hours, historical OHLCV bars, live quotes, and currency conversion.
7
+
8
+ Official integration guide: https://sifting.io/integrations/n8n
9
+
10
+ [Installation](#installation) · [Credentials](#credentials) · [Operations](#operations) · [Resources](#resources)
11
+
12
+ ## Installation
13
+
14
+ Follow the
15
+ [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/)
16
+ in the n8n community nodes documentation.
17
+
18
+ In n8n: **Settings → Community Nodes → Install** and enter `n8n-nodes-siftingio`.
19
+
20
+ ## Credentials
21
+
22
+ You need a SiftingIO API key (`sft_…`). Create one in your
23
+ [SiftingIO dashboard](https://sifting.io). In n8n, add a **SiftingIO API**
24
+ credential and paste the key. The credential sends it as the `X-API-Key` header.
25
+
26
+ ## Operations
27
+
28
+ The SiftingIO node groups operations by resource:
29
+
30
+ * Live – last trade, quote, snapshots, DEX TVL.
31
+ * Historical – OHLCV bars for stocks, forex, crypto, DEX, and commodities.
32
+ * Market – market status, trading hours, and holiday calendars.
33
+ * Convert – live FX/crypto currency conversion.
34
+ * Discovery – ticker/company search and company profiles.
35
+ * Fundamentals – company financials, ratios, concepts, and screener workflows.
36
+ * Filings – SEC filings, extracted sections, risk-factor diffs, proxy statements, and material events.
37
+ * Holdings – insider transactions and institutional holdings.
38
+ * Economic Calendar – upcoming US economic events.
39
+ * DEX Wallet – on-chain wallet portfolio.
40
+
41
+ The node is also usable as a **tool** for n8n AI Agents (`usableAsTool`).
42
+
43
+ ### Full operation list
44
+
45
+ | Resource | Operation | Endpoint |
46
+ | --- | --- | --- |
47
+ | Discovery | Search | `GET /v1/fnd/stocks/search` |
48
+ | Discovery | Get Company Profile | `GET /v1/fnd/stocks/{ticker}/profile` |
49
+ | SEC Filing | List Filings | `GET /v1/fnd/stocks/{ticker}/filings` |
50
+ | SEC Filing | Get Filing | `GET /v1/fnd/stocks/{ticker}/filings/{accession}` |
51
+ | SEC Filing | Get Material Events (8-K) | `GET /v1/fnd/stocks/{ticker}/events` |
52
+ | SEC Filing | Get Ownership (13D/G) | `GET /v1/fnd/stocks/{ticker}/ownership` |
53
+ | SEC Filing | Get Proxy Statements (DEF 14A) | `GET /v1/fnd/stocks/{ticker}/compensation` |
54
+ | SEC Filing | Get Earnings History | `GET /v1/fnd/stocks/{ticker}/earnings` |
55
+ | Filing Text | Get All Sections | `GET /v1/fnd/stocks/{ticker}/filings/{accession}/sections` |
56
+ | Filing Text | Get One Section | `GET /v1/fnd/stocks/{ticker}/filings/{accession}/sections/{section}` |
57
+ | Filing Text | Get Risk Factors Diff | `GET /v1/fnd/stocks/{ticker}/risk-factors-diff` |
58
+ | Financials | Get Full Bundle | `GET /v1/fnd/stocks/{ticker}/financials` |
59
+ | Financials | Get Concept | `GET /v1/fnd/stocks/{ticker}/financials/{concept}` |
60
+ | Financials | Screener | `GET /v1/fnd/stocks/screener/{concept}/{period}` |
61
+ | Financials | Get Ratios | `GET /v1/fnd/stocks/{ticker}/ratios` |
62
+ | Holdings | Get Insider Transactions | `GET /v1/fnd/stocks/{ticker}/insiders` |
63
+ | Holdings | Get 13F Holdings | `GET /v1/fnd/filers/{filer}/holdings` |
64
+ | Economic Calendar | List Events | `GET /v1/fnd/economic-calendar` |
65
+ | Market | List Markets | `GET /v1/fnd/markets` |
66
+ | Market | Get Status (All / One) | `GET /v1/fnd/markets[/{market}]/status` |
67
+ | Market | Get Hours | `GET /v1/fnd/markets/{market}/hours` |
68
+ | Market | Get Calendar | `GET /v1/fnd/markets/{market}/calendar` |
69
+ | Historical | Get Stock / Forex / Crypto / DEX / Commodities Bars | `GET /v1/hist/{class}/{symbol}/bars` |
70
+ | Live | Get Last Trade / Quote | `GET /v1/last/{trade\|quote}/{venue}/{symbol}` |
71
+ | Live | Get Snapshot | `GET /v1/snapshot/{venue}` |
72
+ | Live | Get DEX TVL | `GET /v1/last/tvl/{chain}/{pair}` |
73
+ | Convert | Get Rate | `GET /v1/convert/{from}/{to}` |
74
+ | DEX Wallet | Get Portfolio | `GET /v1/fnd/dex/wallet/{chain}/{address}` |
75
+
76
+ Cursor-paginated list operations expose a **Return All** toggle; gzip-heavy endpoints
77
+ are handled automatically (the node always sends `Accept-Encoding: gzip`).
78
+
79
+ ## Resources
80
+
81
+ * [SiftingIO Website](https://sifting.io)
82
+ * [SiftingIO API Documentation](https://sifting.io/docs)
83
+ * [SiftingIO Integrations](https://sifting.io/integrations)
84
+ * [n8n Integration Guide](https://sifting.io/integrations/n8n)
85
+ * [Symbol Catalog](https://sifting.io/symbols)
86
+ * [Market Hours](https://sifting.io/market-hours)
87
+ * [Pricing](https://sifting.io/pricing)
88
+ * [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
89
+
90
+ ## Local development
91
+
92
+ ```bash
93
+ npm install --ignore-scripts # n8n pulls a native dep (isolated-vm) we don't need to build
94
+ npm run build # tsc + copy icon & codex into dist/
95
+ npm run lint # eslint-plugin-n8n-nodes-base (verification rules)
96
+ ```
97
+
98
+ To try the node in a local n8n instance, link the built package into `~/.n8n/custom`
99
+ and run n8n. **Run n8n on Node.js 20 LTS** — n8n's task runner depends on `isolated-vm`,
100
+ which does not compile on very new Node versions (e.g. Node 26).
101
+
102
+ ## Compatibility
103
+
104
+ Requires n8n with `n8nNodesApiVersion: 1`. Built against `n8n-workflow` 2.x.
105
+
106
+ ## License
107
+
108
+ [MIT](LICENSE.md)
@@ -0,0 +1,9 @@
1
+ import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class SiftingIoApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ authenticate: IAuthenticateGeneric;
8
+ test: ICredentialTestRequest;
9
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SiftingIoApi = void 0;
4
+ class SiftingIoApi {
5
+ constructor() {
6
+ this.name = 'siftingIoApi';
7
+ this.displayName = 'SiftingIO API';
8
+ this.documentationUrl = 'https://sifting.io/docs';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ typeOptions: { password: true },
15
+ default: '',
16
+ required: true,
17
+ description: 'Your SiftingIO API key (starts with "sft_"). Create one in your SiftingIO dashboard.',
18
+ },
19
+ {
20
+ displayName: 'Base URL',
21
+ name: 'baseUrl',
22
+ type: 'string',
23
+ default: 'https://api.sifting.io',
24
+ description: 'The SiftingIO API base URL. Change this only for staging or self-hosted deployments.',
25
+ },
26
+ ];
27
+ this.authenticate = {
28
+ type: 'generic',
29
+ properties: {
30
+ headers: {
31
+ 'X-API-Key': '={{ $credentials.apiKey }}',
32
+ },
33
+ },
34
+ };
35
+ this.test = {
36
+ request: {
37
+ baseURL: '={{ $credentials.baseUrl }}',
38
+ url: '/v1/fnd/markets/status',
39
+ },
40
+ };
41
+ }
42
+ }
43
+ exports.SiftingIoApi = SiftingIoApi;
44
+ //# sourceMappingURL=SiftingIoApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SiftingIoApi.credentials.js","sourceRoot":"","sources":["../../credentials/SiftingIoApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,YAAY;IAAzB;QACC,SAAI,GAAG,cAAc,CAAC;QAEtB,gBAAW,GAAG,eAAe,CAAC;QAE9B,qBAAgB,GAAG,yBAAyB,CAAC;QAE7C,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EACV,sFAAsF;aACvF;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,wBAAwB;gBACjC,WAAW,EACV,sFAAsF;aACvF;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,WAAW,EAAE,4BAA4B;iBACzC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,6BAA6B;gBACtC,GAAG,EAAE,wBAAwB;aAC7B;SACD,CAAC;IACH,CAAC;CAAA;AA3CD,oCA2CC"}
@@ -0,0 +1,4 @@
1
+ import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class SiftingIo implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SiftingIo = void 0;
4
+ const ConvertDescription_1 = require("./descriptions/ConvertDescription");
5
+ const DexWalletDescription_1 = require("./descriptions/DexWalletDescription");
6
+ const DiscoveryDescription_1 = require("./descriptions/DiscoveryDescription");
7
+ const EconomicCalendarDescription_1 = require("./descriptions/EconomicCalendarDescription");
8
+ const FilingDescription_1 = require("./descriptions/FilingDescription");
9
+ const FilingTextDescription_1 = require("./descriptions/FilingTextDescription");
10
+ const FinancialsDescription_1 = require("./descriptions/FinancialsDescription");
11
+ const HistoricalDescription_1 = require("./descriptions/HistoricalDescription");
12
+ const HoldingsDescription_1 = require("./descriptions/HoldingsDescription");
13
+ const LiveDescription_1 = require("./descriptions/LiveDescription");
14
+ const MarketDescription_1 = require("./descriptions/MarketDescription");
15
+ class SiftingIo {
16
+ constructor() {
17
+ this.description = {
18
+ displayName: 'SiftingIO',
19
+ name: 'siftingIo',
20
+ icon: 'file:siftingio.svg',
21
+ group: ['transform'],
22
+ version: 1,
23
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
24
+ description: 'Consume the SiftingIO financial-data API',
25
+ defaults: { name: 'SiftingIO' },
26
+ usableAsTool: true,
27
+ inputs: ['main'],
28
+ outputs: ['main'],
29
+ credentials: [{ name: 'siftingIoApi', required: true }],
30
+ requestDefaults: {
31
+ baseURL: '={{$credentials.baseUrl}}',
32
+ headers: {
33
+ Accept: 'application/json',
34
+ 'Accept-Encoding': 'gzip',
35
+ },
36
+ },
37
+ properties: [
38
+ {
39
+ displayName: 'Resource',
40
+ name: 'resource',
41
+ type: 'options',
42
+ noDataExpression: true,
43
+ options: [
44
+ { name: 'Convert', value: 'convert' },
45
+ { name: 'DEX Wallet', value: 'dexWallet' },
46
+ { name: 'Discovery', value: 'discovery' },
47
+ { name: 'Economic Calendar', value: 'economicCalendar' },
48
+ { name: 'Filing Text', value: 'filingText' },
49
+ { name: 'Financial', value: 'financials' },
50
+ { name: 'Historical', value: 'historical' },
51
+ { name: 'Holding', value: 'holdings' },
52
+ { name: 'Live', value: 'live' },
53
+ { name: 'Market', value: 'market' },
54
+ { name: 'SEC Filing', value: 'filing' },
55
+ ],
56
+ default: 'discovery',
57
+ },
58
+ ...DiscoveryDescription_1.discoveryOperations,
59
+ ...DiscoveryDescription_1.discoveryFields,
60
+ ...FilingDescription_1.filingOperations,
61
+ ...FilingDescription_1.filingFields,
62
+ ...FilingTextDescription_1.filingTextOperations,
63
+ ...FilingTextDescription_1.filingTextFields,
64
+ ...FinancialsDescription_1.financialsOperations,
65
+ ...FinancialsDescription_1.financialsFields,
66
+ ...HoldingsDescription_1.holdingsOperations,
67
+ ...HoldingsDescription_1.holdingsFields,
68
+ ...EconomicCalendarDescription_1.economicCalendarOperations,
69
+ ...EconomicCalendarDescription_1.economicCalendarFields,
70
+ ...MarketDescription_1.marketOperations,
71
+ ...MarketDescription_1.marketFields,
72
+ ...HistoricalDescription_1.historicalOperations,
73
+ ...HistoricalDescription_1.historicalFields,
74
+ ...LiveDescription_1.liveOperations,
75
+ ...LiveDescription_1.liveFields,
76
+ ...ConvertDescription_1.convertOperations,
77
+ ...ConvertDescription_1.convertFields,
78
+ ...DexWalletDescription_1.dexWalletOperations,
79
+ ...DexWalletDescription_1.dexWalletFields,
80
+ ],
81
+ };
82
+ }
83
+ }
84
+ exports.SiftingIo = SiftingIo;
85
+ //# sourceMappingURL=SiftingIo.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SiftingIo.node.js","sourceRoot":"","sources":["../../../nodes/SiftingIo/SiftingIo.node.ts"],"names":[],"mappings":";;;AAEA,0EAAqF;AACrF,8EAA2F;AAC3F,8EAA2F;AAC3F,4FAGoD;AACpD,wEAAkF;AAClF,gFAA8F;AAC9F,gFAA8F;AAC9F,gFAA8F;AAC9F,4EAAwF;AACxF,oEAA4E;AAC5E,wEAAkF;AAElF,MAAa,SAAS;IAAtB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,WAAW;YACxB,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,oBAAoB;YAC1B,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,0CAA0C;YACvD,QAAQ,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;YAC/B,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;YACvD,eAAe,EAAE;gBAChB,OAAO,EAAE,2BAA2B;gBACpC,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,iBAAiB,EAAE,MAAM;iBACzB;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;wBACrC,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE;wBAC1C,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE;wBACzC,EAAE,IAAI,EAAE,mBAAmB,EAAE,KAAK,EAAE,kBAAkB,EAAE;wBACxD,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,YAAY,EAAE;wBAC5C,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,YAAY,EAAE;wBAC1C,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,EAAE;wBAC3C,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,UAAU,EAAE;wBACtC,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;wBAC/B,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;wBACnC,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,QAAQ,EAAE;qBACvC;oBACD,OAAO,EAAE,WAAW;iBACpB;gBAED,GAAG,0CAAmB;gBACtB,GAAG,sCAAe;gBAClB,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBACf,GAAG,4CAAoB;gBACvB,GAAG,wCAAgB;gBACnB,GAAG,4CAAoB;gBACvB,GAAG,wCAAgB;gBACnB,GAAG,wCAAkB;gBACrB,GAAG,oCAAc;gBACjB,GAAG,wDAA0B;gBAC7B,GAAG,oDAAsB;gBACzB,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBACf,GAAG,4CAAoB;gBACvB,GAAG,wCAAgB;gBACnB,GAAG,gCAAc;gBACjB,GAAG,4BAAU;gBACb,GAAG,sCAAiB;gBACpB,GAAG,kCAAa;gBAChB,GAAG,0CAAmB;gBACtB,GAAG,sCAAe;aAClB;SACD,CAAC;IACH,CAAC;CAAA;AAnED,8BAmEC"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-siftingio.siftingIo",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["Finance & Accounting", "Data & Storage"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://sifting.io/docs"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://sifting.io/docs"
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const convertOperations: INodeProperties[];
3
+ export declare const convertFields: INodeProperties[];
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.convertFields = exports.convertOperations = void 0;
4
+ exports.convertOperations = [
5
+ {
6
+ displayName: 'Operation',
7
+ name: 'operation',
8
+ type: 'options',
9
+ noDataExpression: true,
10
+ displayOptions: { show: { resource: ['convert'] } },
11
+ options: [
12
+ {
13
+ name: 'Get Rate',
14
+ value: 'getRate',
15
+ action: 'Convert between currencies',
16
+ description: 'Convert an amount between forex and/or crypto at live market rates',
17
+ routing: {
18
+ request: {
19
+ method: 'GET',
20
+ url: '=/v1/convert/{{$parameter.from}}/{{$parameter.to}}',
21
+ },
22
+ },
23
+ },
24
+ ],
25
+ default: 'getRate',
26
+ },
27
+ ];
28
+ exports.convertFields = [
29
+ {
30
+ displayName: 'From',
31
+ name: 'from',
32
+ type: 'string',
33
+ required: true,
34
+ default: '',
35
+ placeholder: 'USD',
36
+ description: 'Source currency or asset (case-insensitive), e.g. USD, EUR, BTC',
37
+ displayOptions: { show: { resource: ['convert'], operation: ['getRate'] } },
38
+ },
39
+ {
40
+ displayName: 'To',
41
+ name: 'to',
42
+ type: 'string',
43
+ required: true,
44
+ default: '',
45
+ placeholder: 'EUR',
46
+ description: 'Target currency or asset (case-insensitive), e.g. EUR, JPY, ETH',
47
+ displayOptions: { show: { resource: ['convert'], operation: ['getRate'] } },
48
+ },
49
+ {
50
+ displayName: 'Amount',
51
+ name: 'amount',
52
+ type: 'number',
53
+ default: 1,
54
+ description: 'Amount of the source asset to convert. Defaults to 1.',
55
+ displayOptions: { show: { resource: ['convert'], operation: ['getRate'] } },
56
+ routing: { send: { type: 'query', property: 'amount' } },
57
+ },
58
+ ];
59
+ //# sourceMappingURL=ConvertDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConvertDescription.js","sourceRoot":"","sources":["../../../../nodes/SiftingIo/descriptions/ConvertDescription.ts"],"names":[],"mappings":";;;AAEa,QAAA,iBAAiB,GAAsB;IACnD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;QACnD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,SAAS;gBAChB,MAAM,EAAE,4BAA4B;gBACpC,WAAW,EAAE,oEAAoE;gBACjF,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,oDAAoD;qBACzD;iBACD;aACD;SACD;QACD,OAAO,EAAE,SAAS;KAClB;CACD,CAAC;AAEW,QAAA,aAAa,GAAsB;IAC/C;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,iEAAiE;QAC9E,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,SAAS,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;KAC3E;IACD;QACC,WAAW,EAAE,IAAI;QACjB,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,iEAAiE;QAC9E,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,SAAS,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;KAC3E;IACD;QACC,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,WAAW,EAAE,uDAAuD;QACpE,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,SAAS,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;QAC3E,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;KACxD;CACD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const dexWalletOperations: INodeProperties[];
3
+ export declare const dexWalletFields: INodeProperties[];
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dexWalletFields = exports.dexWalletOperations = void 0;
4
+ exports.dexWalletOperations = [
5
+ {
6
+ displayName: 'Operation',
7
+ name: 'operation',
8
+ type: 'options',
9
+ noDataExpression: true,
10
+ displayOptions: { show: { resource: ['dexWallet'] } },
11
+ options: [
12
+ {
13
+ name: 'Get Portfolio',
14
+ value: 'getPortfolio',
15
+ action: 'Get a wallet portfolio',
16
+ description: 'On-chain token balances for a wallet address on one chain',
17
+ routing: {
18
+ request: {
19
+ method: 'GET',
20
+ url: '=/v1/fnd/dex/wallet/{{$parameter.chain}}/{{$parameter.address}}',
21
+ },
22
+ },
23
+ },
24
+ ],
25
+ default: 'getPortfolio',
26
+ },
27
+ ];
28
+ exports.dexWalletFields = [
29
+ {
30
+ displayName: 'Chain',
31
+ name: 'chain',
32
+ type: 'options',
33
+ default: 'eth',
34
+ description: 'Blockchain network',
35
+ displayOptions: { show: { resource: ['dexWallet'], operation: ['getPortfolio'] } },
36
+ options: [
37
+ { name: 'Arbitrum', value: 'arbitrum' },
38
+ { name: 'Base', value: 'base' },
39
+ { name: 'BSC', value: 'bsc' },
40
+ { name: 'Ethereum', value: 'eth' },
41
+ { name: 'Polygon', value: 'polygon' },
42
+ ],
43
+ },
44
+ {
45
+ displayName: 'Address',
46
+ name: 'address',
47
+ type: 'string',
48
+ required: true,
49
+ default: '',
50
+ placeholder: '0x…',
51
+ description: 'Wallet address (0x followed by 40 hex characters)',
52
+ displayOptions: { show: { resource: ['dexWallet'], operation: ['getPortfolio'] } },
53
+ },
54
+ ];
55
+ //# sourceMappingURL=DexWalletDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DexWalletDescription.js","sourceRoot":"","sources":["../../../../nodes/SiftingIo/descriptions/DexWalletDescription.ts"],"names":[],"mappings":";;;AAEa,QAAA,mBAAmB,GAAsB;IACrD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,EAAE;QACrD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,eAAe;gBACrB,KAAK,EAAE,cAAc;gBACrB,MAAM,EAAE,wBAAwB;gBAChC,WAAW,EAAE,2DAA2D;gBACxE,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,iEAAiE;qBACtE;iBACD;aACD;SACD;QACD,OAAO,EAAE,cAAc;KACvB;CACD,CAAC;AAEW,QAAA,eAAe,GAAsB;IACjD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,oBAAoB;QACjC,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,cAAc,CAAC,EAAE,EAAE;QAClF,OAAO,EAAE;YACR,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE;YACvC,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;YAC/B,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE;YAC7B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,EAAE;YAClC,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;SACrC;KACD;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,mDAAmD;QAChE,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,cAAc,CAAC,EAAE,EAAE;KAClF;CACD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const discoveryOperations: INodeProperties[];
3
+ export declare const discoveryFields: INodeProperties[];
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.discoveryFields = exports.discoveryOperations = void 0;
4
+ const shared_1 = require("../shared");
5
+ exports.discoveryOperations = [
6
+ {
7
+ displayName: 'Operation',
8
+ name: 'operation',
9
+ type: 'options',
10
+ noDataExpression: true,
11
+ displayOptions: { show: { resource: ['discovery'] } },
12
+ options: [
13
+ {
14
+ name: 'Search',
15
+ value: 'search',
16
+ action: 'Search tickers and companies',
17
+ description: 'Substring lookup over the SEC ticker registry (~13k US issuers)',
18
+ routing: {
19
+ request: { method: 'GET', url: '=/v1/fnd/stocks/search' },
20
+ output: (0, shared_1.splitArray)('data'),
21
+ },
22
+ },
23
+ {
24
+ name: 'Get Company Profile',
25
+ value: 'getProfile',
26
+ action: 'Get a company profile',
27
+ description: 'Name, exchanges, SIC industry, fiscal year end and entity type for one issuer',
28
+ routing: {
29
+ request: { method: 'GET', url: '=/v1/fnd/stocks/{{$parameter.ticker}}/profile' },
30
+ },
31
+ },
32
+ ],
33
+ default: 'search',
34
+ },
35
+ ];
36
+ exports.discoveryFields = [
37
+ {
38
+ displayName: 'Query',
39
+ name: 'q',
40
+ type: 'string',
41
+ required: true,
42
+ default: '',
43
+ placeholder: 'apple',
44
+ description: 'Search term. Substring against company name, prefix against ticker.',
45
+ displayOptions: { show: { resource: ['discovery'], operation: ['search'] } },
46
+ routing: { send: { type: 'query', property: 'q' } },
47
+ },
48
+ (0, shared_1.simpleLimitField)('discovery', 'search', 100, 25),
49
+ {
50
+ displayName: 'Ticker',
51
+ name: 'ticker',
52
+ type: 'string',
53
+ required: true,
54
+ default: '',
55
+ placeholder: 'AAPL',
56
+ description: 'Ticker symbol (case-insensitive)',
57
+ displayOptions: { show: { resource: ['discovery'], operation: ['getProfile'] } },
58
+ },
59
+ ];
60
+ //# sourceMappingURL=DiscoveryDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DiscoveryDescription.js","sourceRoot":"","sources":["../../../../nodes/SiftingIo/descriptions/DiscoveryDescription.ts"],"names":[],"mappings":";;;AACA,sCAAyD;AAE5C,QAAA,mBAAmB,GAAsB;IACrD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,EAAE;QACrD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,8BAA8B;gBACtC,WAAW,EAAE,iEAAiE;gBAC9E,OAAO,EAAE;oBACR,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,wBAAwB,EAAE;oBACzD,MAAM,EAAE,IAAA,mBAAU,EAAC,MAAM,CAAC;iBAC1B;aACD;YACD;gBACC,IAAI,EAAE,qBAAqB;gBAC3B,KAAK,EAAE,YAAY;gBACnB,MAAM,EAAE,uBAAuB;gBAC/B,WAAW,EACV,+EAA+E;gBAChF,OAAO,EAAE;oBACR,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,+CAA+C,EAAE;iBAChF;aACD;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;CACD,CAAC;AAEW,QAAA,eAAe,GAAsB;IACjD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,OAAO;QACpB,WAAW,EAAE,qEAAqE;QAClF,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,QAAQ,CAAC,EAAE,EAAE;QAC5E,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,EAAE;KACnD;IACD,IAAA,yBAAgB,EAAC,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,EAAE,CAAC;IAChD;QACC,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,MAAM;QACnB,WAAW,EAAE,kCAAkC;QAC/C,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,YAAY,CAAC,EAAE,EAAE;KAChF;CACD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const economicCalendarOperations: INodeProperties[];
3
+ export declare const economicCalendarFields: INodeProperties[];
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.economicCalendarFields = exports.economicCalendarOperations = void 0;
4
+ const shared_1 = require("../shared");
5
+ exports.economicCalendarOperations = [
6
+ {
7
+ displayName: 'Operation',
8
+ name: 'operation',
9
+ type: 'options',
10
+ noDataExpression: true,
11
+ displayOptions: { show: { resource: ['economicCalendar'] } },
12
+ options: [
13
+ {
14
+ name: 'List Events',
15
+ value: 'list',
16
+ action: 'List upcoming economic events',
17
+ description: 'Upcoming US economic releases (CPI, NFP, FOMC, GDP, …) from official calendars',
18
+ routing: {
19
+ request: { method: 'GET', url: '=/v1/fnd/economic-calendar' },
20
+ output: (0, shared_1.splitArray)('events'),
21
+ },
22
+ },
23
+ ],
24
+ default: 'list',
25
+ },
26
+ ];
27
+ exports.economicCalendarFields = [
28
+ {
29
+ displayName: 'From',
30
+ name: 'from',
31
+ type: 'string',
32
+ default: '',
33
+ placeholder: '2026-06-01',
34
+ description: 'Inclusive lower bound on scheduled_at (YYYY-MM-DD or RFC3339). Defaults to now.',
35
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
36
+ routing: { send: { type: 'query', property: 'from' } },
37
+ },
38
+ {
39
+ displayName: 'To',
40
+ name: 'to',
41
+ type: 'string',
42
+ default: '',
43
+ placeholder: '2026-12-31',
44
+ description: 'Exclusive upper bound on scheduled_at. Defaults to From + 30 days (max range 365 days).',
45
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
46
+ routing: { send: { type: 'query', property: 'to' } },
47
+ },
48
+ {
49
+ displayName: 'Country',
50
+ name: 'country',
51
+ type: 'string',
52
+ default: '',
53
+ placeholder: 'US',
54
+ description: 'ISO 3166-1 alpha-2 country code. Defaults to US.',
55
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
56
+ routing: { send: { type: 'query', property: 'country' } },
57
+ },
58
+ {
59
+ displayName: 'Impact',
60
+ name: 'impact',
61
+ type: 'options',
62
+ default: '',
63
+ description: 'Filter by relative market-impact tier',
64
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
65
+ options: [
66
+ { name: 'Any', value: '' },
67
+ { name: 'Low', value: 'low' },
68
+ { name: 'Medium', value: 'medium' },
69
+ { name: 'High', value: 'high' },
70
+ ],
71
+ routing: { send: { type: 'query', property: 'impact' } },
72
+ },
73
+ {
74
+ displayName: 'Agency',
75
+ name: 'agency',
76
+ type: 'options',
77
+ default: '',
78
+ description: 'Filter by issuing agency',
79
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
80
+ options: [
81
+ { name: 'Any', value: '' },
82
+ { name: 'BEA', value: 'BEA' },
83
+ { name: 'BLS', value: 'BLS' },
84
+ { name: 'Census', value: 'Census' },
85
+ { name: 'Conference Board', value: 'ConferenceBoard' },
86
+ { name: 'DOL', value: 'DOL' },
87
+ { name: 'EIA', value: 'EIA' },
88
+ { name: 'Fed', value: 'Fed' },
89
+ { name: 'ISM', value: 'ISM' },
90
+ { name: 'NAR', value: 'NAR' },
91
+ { name: 'Treasury', value: 'Treasury' },
92
+ { name: 'UMich', value: 'UMich' },
93
+ ],
94
+ routing: { send: { type: 'query', property: 'agency' } },
95
+ },
96
+ {
97
+ displayName: 'Event ID',
98
+ name: 'event_id',
99
+ type: 'string',
100
+ default: '',
101
+ placeholder: 'us_cpi',
102
+ description: 'Recurring event identifier, e.g. us_cpi, us_nfp, us_fomc_decision',
103
+ displayOptions: { show: { resource: ['economicCalendar'], operation: ['list'] } },
104
+ routing: { send: { type: 'query', property: 'event_id' } },
105
+ },
106
+ (0, shared_1.simpleLimitField)('economicCalendar', 'list', 500, 100),
107
+ ];
108
+ //# sourceMappingURL=EconomicCalendarDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EconomicCalendarDescription.js","sourceRoot":"","sources":["../../../../nodes/SiftingIo/descriptions/EconomicCalendarDescription.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const filingOperations: INodeProperties[];
3
+ export declare const filingFields: INodeProperties[];