n8n-nodes-socialfetch 0.13.4 → 0.13.5
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.
- package/README.md +19 -11
- package/dist/credentials/SocialFetchApi.credentials.js +2 -2
- package/dist/nodes/SocialFetch/SocialFetch.node.js +3 -3
- package/dist/nodes/SocialFetch/descriptions/facebook.generated.js +30 -30
- package/dist/nodes/SocialFetch/descriptions/instagram.generated.js +11 -11
- package/dist/nodes/SocialFetch/descriptions/linkedin.generated.js +7 -7
- package/dist/nodes/SocialFetch/descriptions/reddit.generated.js +5 -5
- package/dist/nodes/SocialFetch/descriptions/spotify.generated.js +6 -6
- package/dist/nodes/SocialFetch/descriptions/telegram.generated.js +3 -3
- package/dist/nodes/SocialFetch/descriptions/threads.generated.js +4 -4
- package/dist/nodes/SocialFetch/descriptions/tiktok.generated.js +26 -26
- package/dist/nodes/SocialFetch/descriptions/twitter.generated.js +6 -6
- package/dist/nodes/SocialFetch/descriptions/web.generated.js +30 -22
- package/dist/nodes/SocialFetch/descriptions/youtube.generated.js +15 -15
- package/dist/nodes/SocialFetch/shared/pagination.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# n8n-nodes-socialfetch
|
|
2
2
|
|
|
3
|
-
This is an [n8n](https://n8n.io) community node that lets you fetch real-time social media and web data using the [
|
|
3
|
+
This is an [n8n](https://n8n.io) community node that lets you fetch real-time social media and web data using the [Social Fetch API](https://www.socialfetch.dev).
|
|
4
4
|
|
|
5
|
-
It exposes a single **
|
|
5
|
+
It exposes a single **Social Fetch** node with one resource per platform (TikTok, Twitter/X, Telegram, Facebook, Instagram, Threads, LinkedIn, Reddit, Spotify, YouTube, Web) plus account operations under **Account** (Whoami, Balance). Each operation maps directly to a Social Fetch public API endpoint.
|
|
6
6
|
|
|
7
7
|
[Installation](#installation) · [Credentials](#credentials) · [Operations](#operations) · [Example](#example-workflow) · [Development](#development) · [Publishing](PUBLISHING.md)
|
|
8
8
|
|
|
@@ -12,9 +12,9 @@ Follow the [community nodes installation guide](https://docs.n8n.io/integrations
|
|
|
12
12
|
|
|
13
13
|
## Credentials
|
|
14
14
|
|
|
15
|
-
You need a
|
|
15
|
+
You need a Social Fetch API key (it starts with `sfk_`). Create one in your [Social Fetch API Keys](https://app.socialfetch.dev/api-keys).
|
|
16
16
|
|
|
17
|
-
In n8n, create a new **
|
|
17
|
+
In n8n, create a new **Social Fetch API** credential and paste your key. The credential is validated against `GET /v1/whoami` when you save it.
|
|
18
18
|
|
|
19
19
|
## Operations
|
|
20
20
|
|
|
@@ -22,18 +22,18 @@ Pick a **Resource** (platform) and an **Operation**. Required inputs appear as d
|
|
|
22
22
|
|
|
23
23
|
### Pagination and “Return All”
|
|
24
24
|
|
|
25
|
-
Only list endpoints that use
|
|
25
|
+
Only list endpoints that use Social Fetch’s **cursor** query parameter show a **Return All** toggle. When enabled, the node follows `data.page.nextCursor` until `data.page.hasMore` is false. Each page is a separate output item containing the full API JSON body (`data`, `meta`, etc.). Use n8n’s **Item Lists** or **Code** node if you need a single merged array.
|
|
26
26
|
|
|
27
27
|
List endpoints that return everything in one response (no cursor), or that paginate with other parameters such as `page`, do not show **Return All**—you get the first response only unless you pass those parameters under **Additional Fields**.
|
|
28
28
|
|
|
29
|
-
Every request consumes credits from your
|
|
29
|
+
Every request consumes credits from your Social Fetch balance (most endpoints cost 1 credit; some search and media-download options cost more). The credits charged for each call are returned in `meta.creditsCharged`.
|
|
30
30
|
|
|
31
31
|
## Example workflow
|
|
32
32
|
|
|
33
33
|
This example fetches a TikTok creator's recent videos and keeps only the high-performing ones.
|
|
34
34
|
|
|
35
35
|
1. **Manual Trigger** — start the workflow manually for testing.
|
|
36
|
-
2. **
|
|
36
|
+
2. **Social Fetch** — set **Resource** to `TikTok` and **Operation** to `Profile Videos`.
|
|
37
37
|
- **Handle**: `n8n`
|
|
38
38
|
- Turn on **Return All** to page through every video, or leave it off to fetch the first page.
|
|
39
39
|
- Under **Additional Fields**, set **Sort By** to `Popular`.
|
|
@@ -41,7 +41,7 @@ This example fetches a TikTok creator's recent videos and keeps only the high-pe
|
|
|
41
41
|
4. **Filter** — keep videos above a view threshold:
|
|
42
42
|
- Condition: `{{ $json.stats.views }}` _is greater than_ `100000`.
|
|
43
43
|
|
|
44
|
-
Each
|
|
44
|
+
Each Social Fetch item is one API page. With **Return All** off you get a single page; with it on you get one item per page, each containing `data.videos`, `data.page`, and `meta`. **Split Out** turns the videos array into individual items so the Filter node can evaluate `stats.views` on each video.
|
|
45
45
|
|
|
46
46
|
Example response shape (first video on a page):
|
|
47
47
|
|
|
@@ -68,19 +68,27 @@ Example response shape (first video on a page):
|
|
|
68
68
|
}
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
A second common pattern is enrichment: use **TikTok → User
|
|
71
|
+
A second common pattern is enrichment: use **TikTok → User Search** (or **Search Videos**) to discover handles, then loop those results back into **Profile Videos** or **Profile** to pull full details for each match.
|
|
72
72
|
|
|
73
73
|
## Development
|
|
74
74
|
|
|
75
|
-
The node descriptions are generated from the
|
|
75
|
+
The node descriptions are generated from the Social Fetch OpenAPI spec. Parameter labels and operation dropdown names follow [n8n node UX guidelines](https://docs.n8n.io/integrations/creating-nodes/build/reference/ux-guidelines/): Title Case with canonical acronyms (`URL`, `ID`, `AI`) on parameters and operation names; sentence case on operation `action` strings and descriptions.
|
|
76
|
+
|
|
77
|
+
Label formatting lives in `scripts/n8n-label-formatting.mts` and is covered by unit and integration tests.
|
|
76
78
|
|
|
77
79
|
```bash
|
|
78
80
|
# from the repo root (codegen + eslint fix on generated descriptions)
|
|
79
81
|
pnpm generate:n8n
|
|
80
82
|
|
|
83
|
+
# label formatting tests (unit + committed generated output; lives in monorepo tests/)
|
|
84
|
+
pnpm test:n8n
|
|
85
|
+
|
|
81
86
|
# full derived check before a PR (openapi, sdk, zapier, n8n, …)
|
|
82
87
|
pnpm check:derived
|
|
83
88
|
|
|
89
|
+
# lint, build, and label tests for the n8n package only
|
|
90
|
+
pnpm check:n8n
|
|
91
|
+
|
|
84
92
|
# local dev (standalone pnpm project — not part of the root pnpm workspace)
|
|
85
93
|
cd integrations/n8n
|
|
86
94
|
pnpm install --ignore-workspace
|
|
@@ -88,7 +96,7 @@ pnpm run build
|
|
|
88
96
|
pnpm run dev # http://localhost:5678
|
|
89
97
|
```
|
|
90
98
|
|
|
91
|
-
`generate:n8n` syncs the package **version** from `@socialfetch/sdk`, regenerates descriptions, and runs `lint:fix`. `check:
|
|
99
|
+
`generate:n8n` syncs the package **version** from `@socialfetch/sdk`, regenerates descriptions, and runs `lint:fix`. `check:n8n` runs label tests, lint, and build. `check:derived` also runs `check:n8n`.
|
|
92
100
|
|
|
93
101
|
Releases and syncing to [n8n-nodes-socialfetch](https://github.com/social-freak-ltd/n8n-nodes-socialfetch) are automated from the monorepo — see [PUBLISHING.md](PUBLISHING.md).
|
|
94
102
|
|
|
@@ -4,7 +4,7 @@ exports.SocialFetchApi = void 0;
|
|
|
4
4
|
class SocialFetchApi {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.name = "socialFetchApi";
|
|
7
|
-
this.displayName = "
|
|
7
|
+
this.displayName = "Social Fetch API";
|
|
8
8
|
this.documentationUrl = "https://www.socialfetch.dev/docs";
|
|
9
9
|
this.icon = "file:socialfetch.svg";
|
|
10
10
|
this.properties = [
|
|
@@ -15,7 +15,7 @@ class SocialFetchApi {
|
|
|
15
15
|
typeOptions: { password: true },
|
|
16
16
|
default: "",
|
|
17
17
|
required: true,
|
|
18
|
-
description: "Your
|
|
18
|
+
description: "Your Social Fetch API key (starts with sfk_). Create one in the Social Fetch dashboard.",
|
|
19
19
|
},
|
|
20
20
|
];
|
|
21
21
|
this.authenticate = {
|
|
@@ -6,14 +6,14 @@ const index_generated_1 = require("./descriptions/index.generated");
|
|
|
6
6
|
class SocialFetch {
|
|
7
7
|
constructor() {
|
|
8
8
|
this.description = {
|
|
9
|
-
displayName: "
|
|
9
|
+
displayName: "Social Fetch",
|
|
10
10
|
name: "socialFetch",
|
|
11
11
|
icon: "file:socialfetch.svg",
|
|
12
12
|
group: ["input"],
|
|
13
13
|
version: 1,
|
|
14
14
|
subtitle: '={{$parameter["operation"].replace(/\\./g, " › ").replace(/^[^›]+ › /, "")}}',
|
|
15
|
-
description: "Fetch social media and web data via the
|
|
16
|
-
defaults: { name: "
|
|
15
|
+
description: "Fetch social media and web data via the Social Fetch API",
|
|
16
|
+
defaults: { name: "Social Fetch" },
|
|
17
17
|
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
18
18
|
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
19
19
|
credentials: [{ name: "socialFetchApi", required: true }],
|
|
@@ -30,7 +30,7 @@ exports.facebook = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Profile
|
|
33
|
+
"name": "Profile Posts",
|
|
34
34
|
"value": "facebook.profile.posts.list",
|
|
35
35
|
"action": "List Facebook profile posts",
|
|
36
36
|
"description": "Get posts from a Facebook profile or page.",
|
|
@@ -48,7 +48,7 @@ exports.facebook = [
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "Profile
|
|
51
|
+
"name": "Profile Reels",
|
|
52
52
|
"value": "facebook.profile.reels.list",
|
|
53
53
|
"action": "List Facebook profile reels",
|
|
54
54
|
"description": "Get Reels from a Facebook profile or page.",
|
|
@@ -66,7 +66,7 @@ exports.facebook = [
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
|
-
"name": "Profile
|
|
69
|
+
"name": "Profile Photos",
|
|
70
70
|
"value": "facebook.profile.photos.list",
|
|
71
71
|
"action": "List Facebook profile photos",
|
|
72
72
|
"description": "Get photos from a Facebook profile or page.",
|
|
@@ -84,7 +84,7 @@ exports.facebook = [
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"name": "Post or
|
|
87
|
+
"name": "Post or Reel",
|
|
88
88
|
"value": "facebook.post.get",
|
|
89
89
|
"action": "Get Facebook post or reel",
|
|
90
90
|
"description": "Get a Facebook post or Reel.",
|
|
@@ -126,7 +126,7 @@ exports.facebook = [
|
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
"name": "Group
|
|
129
|
+
"name": "Group Posts",
|
|
130
130
|
"value": "facebook.group.posts.list",
|
|
131
131
|
"action": "List Facebook group posts",
|
|
132
132
|
"description": "Get posts from a Facebook group.",
|
|
@@ -144,7 +144,7 @@ exports.facebook = [
|
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"name": "Marketplace
|
|
147
|
+
"name": "Marketplace Item",
|
|
148
148
|
"value": "facebook.marketplace.item.get",
|
|
149
149
|
"action": "Get Facebook Marketplace item",
|
|
150
150
|
"description": "Get details for a Facebook Marketplace listing.",
|
|
@@ -156,7 +156,7 @@ exports.facebook = [
|
|
|
156
156
|
}
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
|
-
"name": "Marketplace
|
|
159
|
+
"name": "Marketplace Location Search",
|
|
160
160
|
"value": "facebook.marketplace.locations.search",
|
|
161
161
|
"action": "Search Facebook Marketplace locations",
|
|
162
162
|
"description": "Search Facebook Marketplace locations to obtain coordinates for listing search.",
|
|
@@ -168,7 +168,7 @@ exports.facebook = [
|
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
|
-
"name": "Marketplace
|
|
171
|
+
"name": "Marketplace Search",
|
|
172
172
|
"value": "facebook.marketplace.search.list",
|
|
173
173
|
"action": "Search Facebook Marketplace listings",
|
|
174
174
|
"description": "Search Facebook Marketplace listings by keyword near a latitude and longitude.",
|
|
@@ -186,7 +186,7 @@ exports.facebook = [
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
|
-
"name": "Ad
|
|
189
|
+
"name": "Ad Library Ad",
|
|
190
190
|
"value": "facebook.adLibrary.ad.get",
|
|
191
191
|
"action": "Get Facebook Ad Library ad",
|
|
192
192
|
"description": "Get a single Facebook Ad Library ad by archive id or public Ad Library URL.",
|
|
@@ -198,7 +198,7 @@ exports.facebook = [
|
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
|
-
"name": "Ad Library
|
|
201
|
+
"name": "Ad Library Search",
|
|
202
202
|
"value": "facebook.adLibrary.ads.search.get",
|
|
203
203
|
"action": "Search Facebook Ad Library ads",
|
|
204
204
|
"description": "Search Facebook Ad Library ads by keyword.",
|
|
@@ -216,7 +216,7 @@ exports.facebook = [
|
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
|
-
"name": "Company
|
|
219
|
+
"name": "Company Ads",
|
|
220
220
|
"value": "facebook.company.ads.list",
|
|
221
221
|
"action": "List Facebook company ads",
|
|
222
222
|
"description": "List ads a company or page is running in the Facebook Ad Library.",
|
|
@@ -234,7 +234,7 @@ exports.facebook = [
|
|
|
234
234
|
}
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
|
-
"name": "Ad
|
|
237
|
+
"name": "Ad Library Companies",
|
|
238
238
|
"value": "facebook.adLibrary.companies.search",
|
|
239
239
|
"action": "Search Facebook ad library companies",
|
|
240
240
|
"description": "Search Facebook ad library companies by name.",
|
|
@@ -248,7 +248,7 @@ exports.facebook = [
|
|
|
248
248
|
]
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
|
-
"displayName": "
|
|
251
|
+
"displayName": "URL",
|
|
252
252
|
"name": "url",
|
|
253
253
|
"type": "string",
|
|
254
254
|
"default": "",
|
|
@@ -339,7 +339,7 @@ exports.facebook = [
|
|
|
339
339
|
},
|
|
340
340
|
"options": [
|
|
341
341
|
{
|
|
342
|
-
"displayName": "
|
|
342
|
+
"displayName": "URL",
|
|
343
343
|
"name": "url",
|
|
344
344
|
"type": "string",
|
|
345
345
|
"default": "",
|
|
@@ -353,7 +353,7 @@ exports.facebook = [
|
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
|
-
"displayName": "Page
|
|
356
|
+
"displayName": "Page ID",
|
|
357
357
|
"name": "pageId",
|
|
358
358
|
"type": "string",
|
|
359
359
|
"default": "",
|
|
@@ -385,7 +385,7 @@ exports.facebook = [
|
|
|
385
385
|
}
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
|
-
"displayName": "
|
|
388
|
+
"displayName": "URL",
|
|
389
389
|
"name": "url",
|
|
390
390
|
"type": "string",
|
|
391
391
|
"default": "",
|
|
@@ -427,7 +427,7 @@ exports.facebook = [
|
|
|
427
427
|
}
|
|
428
428
|
},
|
|
429
429
|
{
|
|
430
|
-
"displayName": "
|
|
430
|
+
"displayName": "URL",
|
|
431
431
|
"name": "url",
|
|
432
432
|
"type": "string",
|
|
433
433
|
"default": "",
|
|
@@ -452,7 +452,7 @@ exports.facebook = [
|
|
|
452
452
|
}
|
|
453
453
|
},
|
|
454
454
|
{
|
|
455
|
-
"displayName": "
|
|
455
|
+
"displayName": "URL",
|
|
456
456
|
"name": "url",
|
|
457
457
|
"type": "string",
|
|
458
458
|
"default": "",
|
|
@@ -556,7 +556,7 @@ exports.facebook = [
|
|
|
556
556
|
},
|
|
557
557
|
"options": [
|
|
558
558
|
{
|
|
559
|
-
"displayName": "
|
|
559
|
+
"displayName": "URL",
|
|
560
560
|
"name": "url",
|
|
561
561
|
"type": "string",
|
|
562
562
|
"default": "",
|
|
@@ -570,7 +570,7 @@ exports.facebook = [
|
|
|
570
570
|
}
|
|
571
571
|
},
|
|
572
572
|
{
|
|
573
|
-
"displayName": "Feedback
|
|
573
|
+
"displayName": "Feedback ID",
|
|
574
574
|
"name": "feedbackId",
|
|
575
575
|
"type": "string",
|
|
576
576
|
"default": "",
|
|
@@ -585,7 +585,7 @@ exports.facebook = [
|
|
|
585
585
|
]
|
|
586
586
|
},
|
|
587
587
|
{
|
|
588
|
-
"displayName": "
|
|
588
|
+
"displayName": "URL",
|
|
589
589
|
"name": "url",
|
|
590
590
|
"type": "string",
|
|
591
591
|
"default": "",
|
|
@@ -627,7 +627,7 @@ exports.facebook = [
|
|
|
627
627
|
}
|
|
628
628
|
},
|
|
629
629
|
{
|
|
630
|
-
"displayName": "
|
|
630
|
+
"displayName": "URL",
|
|
631
631
|
"name": "url",
|
|
632
632
|
"type": "string",
|
|
633
633
|
"default": "",
|
|
@@ -719,7 +719,7 @@ exports.facebook = [
|
|
|
719
719
|
},
|
|
720
720
|
"options": [
|
|
721
721
|
{
|
|
722
|
-
"displayName": "Item
|
|
722
|
+
"displayName": "Item ID",
|
|
723
723
|
"name": "itemId",
|
|
724
724
|
"type": "string",
|
|
725
725
|
"default": "",
|
|
@@ -732,7 +732,7 @@ exports.facebook = [
|
|
|
732
732
|
}
|
|
733
733
|
},
|
|
734
734
|
{
|
|
735
|
-
"displayName": "
|
|
735
|
+
"displayName": "URL",
|
|
736
736
|
"name": "url",
|
|
737
737
|
"type": "string",
|
|
738
738
|
"default": "",
|
|
@@ -1092,7 +1092,7 @@ exports.facebook = [
|
|
|
1092
1092
|
},
|
|
1093
1093
|
"options": [
|
|
1094
1094
|
{
|
|
1095
|
-
"displayName": "Ad
|
|
1095
|
+
"displayName": "Ad ID",
|
|
1096
1096
|
"name": "adId",
|
|
1097
1097
|
"type": "string",
|
|
1098
1098
|
"default": "",
|
|
@@ -1105,7 +1105,7 @@ exports.facebook = [
|
|
|
1105
1105
|
}
|
|
1106
1106
|
},
|
|
1107
1107
|
{
|
|
1108
|
-
"displayName": "
|
|
1108
|
+
"displayName": "URL",
|
|
1109
1109
|
"name": "url",
|
|
1110
1110
|
"type": "string",
|
|
1111
1111
|
"default": "",
|
|
@@ -1261,7 +1261,7 @@ exports.facebook = [
|
|
|
1261
1261
|
"value": "all"
|
|
1262
1262
|
},
|
|
1263
1263
|
{
|
|
1264
|
-
"name": "Political
|
|
1264
|
+
"name": "Political and Issue",
|
|
1265
1265
|
"value": "political-and-issue"
|
|
1266
1266
|
}
|
|
1267
1267
|
],
|
|
@@ -1336,7 +1336,7 @@ exports.facebook = [
|
|
|
1336
1336
|
"value": "meme"
|
|
1337
1337
|
},
|
|
1338
1338
|
{
|
|
1339
|
-
"name": "Image
|
|
1339
|
+
"name": "Image and Meme",
|
|
1340
1340
|
"value": "image-and-meme"
|
|
1341
1341
|
},
|
|
1342
1342
|
{
|
|
@@ -1429,7 +1429,7 @@ exports.facebook = [
|
|
|
1429
1429
|
},
|
|
1430
1430
|
"options": [
|
|
1431
1431
|
{
|
|
1432
|
-
"displayName": "Page
|
|
1432
|
+
"displayName": "Page ID",
|
|
1433
1433
|
"name": "pageId",
|
|
1434
1434
|
"type": "string",
|
|
1435
1435
|
"default": "",
|
|
@@ -1516,7 +1516,7 @@ exports.facebook = [
|
|
|
1516
1516
|
"value": "meme"
|
|
1517
1517
|
},
|
|
1518
1518
|
{
|
|
1519
|
-
"name": "Image
|
|
1519
|
+
"name": "Image and Meme",
|
|
1520
1520
|
"value": "image-and-meme"
|
|
1521
1521
|
},
|
|
1522
1522
|
{
|
|
@@ -30,7 +30,7 @@ exports.instagram = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Basic
|
|
33
|
+
"name": "Basic Profile",
|
|
34
34
|
"value": "instagram.profile.basic.get",
|
|
35
35
|
"action": "Get Instagram basic profile",
|
|
36
36
|
"description": "Get a lightweight Instagram profile by numeric user ID.",
|
|
@@ -42,7 +42,7 @@ exports.instagram = [
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"name": "Profile
|
|
45
|
+
"name": "Profile Posts",
|
|
46
46
|
"value": "instagram.profile.posts.list",
|
|
47
47
|
"action": "List Instagram profile posts",
|
|
48
48
|
"description": "Get posts from a specific Instagram profile.",
|
|
@@ -60,7 +60,7 @@ exports.instagram = [
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
|
-
"name": "Profile
|
|
63
|
+
"name": "Profile Reels",
|
|
64
64
|
"value": "instagram.profile.reels.list",
|
|
65
65
|
"action": "List Instagram profile reels",
|
|
66
66
|
"description": "Get Reels from a specific Instagram profile.",
|
|
@@ -78,7 +78,7 @@ exports.instagram = [
|
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"name": "Profile
|
|
81
|
+
"name": "Profile Highlights",
|
|
82
82
|
"value": "instagram.profile.highlights.list",
|
|
83
83
|
"action": "List Instagram profile highlights",
|
|
84
84
|
"description": "List story highlight albums for an Instagram profile.",
|
|
@@ -102,7 +102,7 @@ exports.instagram = [
|
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
|
-
"name": "Post or
|
|
105
|
+
"name": "Post or Reel",
|
|
106
106
|
"value": "instagram.post.get",
|
|
107
107
|
"action": "Get Instagram post or reel",
|
|
108
108
|
"description": "Get a single Instagram post or Reel.",
|
|
@@ -144,7 +144,7 @@ exports.instagram = [
|
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"name": "Search
|
|
147
|
+
"name": "Search Reels",
|
|
148
148
|
"value": "instagram.search.reels.list",
|
|
149
149
|
"action": "Search Instagram Reels",
|
|
150
150
|
"description": "Search Instagram Reels by keyword with optional date filters and page-based pagination.",
|
|
@@ -177,7 +177,7 @@ exports.instagram = [
|
|
|
177
177
|
}
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
|
-
"displayName": "User
|
|
180
|
+
"displayName": "User ID",
|
|
181
181
|
"name": "userId",
|
|
182
182
|
"type": "string",
|
|
183
183
|
"default": "",
|
|
@@ -286,7 +286,7 @@ exports.instagram = [
|
|
|
286
286
|
}
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
|
-
"displayName": "Highlight
|
|
289
|
+
"displayName": "Highlight ID",
|
|
290
290
|
"name": "highlightId",
|
|
291
291
|
"type": "string",
|
|
292
292
|
"default": "",
|
|
@@ -304,7 +304,7 @@ exports.instagram = [
|
|
|
304
304
|
}
|
|
305
305
|
},
|
|
306
306
|
{
|
|
307
|
-
"displayName": "
|
|
307
|
+
"displayName": "URL",
|
|
308
308
|
"name": "url",
|
|
309
309
|
"type": "string",
|
|
310
310
|
"default": "",
|
|
@@ -404,7 +404,7 @@ exports.instagram = [
|
|
|
404
404
|
}
|
|
405
405
|
},
|
|
406
406
|
{
|
|
407
|
-
"displayName": "
|
|
407
|
+
"displayName": "URL",
|
|
408
408
|
"name": "url",
|
|
409
409
|
"type": "string",
|
|
410
410
|
"default": "",
|
|
@@ -429,7 +429,7 @@ exports.instagram = [
|
|
|
429
429
|
}
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
|
-
"displayName": "
|
|
432
|
+
"displayName": "URL",
|
|
433
433
|
"name": "url",
|
|
434
434
|
"type": "string",
|
|
435
435
|
"default": "",
|
|
@@ -29,7 +29,7 @@ exports.linkedin = [
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
"name": "Company
|
|
32
|
+
"name": "Company Page",
|
|
33
33
|
"value": "linkedin.company.get",
|
|
34
34
|
"action": "Get LinkedIn company page",
|
|
35
35
|
"description": "Get a LinkedIn company page.",
|
|
@@ -41,7 +41,7 @@ exports.linkedin = [
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
"name": "Company
|
|
44
|
+
"name": "Company Posts",
|
|
45
45
|
"value": "linkedin.company.posts.list",
|
|
46
46
|
"action": "List LinkedIn company posts",
|
|
47
47
|
"description": "Get posts from a LinkedIn company page.",
|
|
@@ -53,7 +53,7 @@ exports.linkedin = [
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
|
-
"name": "Post or
|
|
56
|
+
"name": "Post or Article",
|
|
57
57
|
"value": "linkedin.post.get",
|
|
58
58
|
"action": "Get LinkedIn post or article",
|
|
59
59
|
"description": "Get a LinkedIn post or article.",
|
|
@@ -67,7 +67,7 @@ exports.linkedin = [
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"displayName": "
|
|
70
|
+
"displayName": "URL",
|
|
71
71
|
"name": "url",
|
|
72
72
|
"type": "string",
|
|
73
73
|
"default": "",
|
|
@@ -92,7 +92,7 @@ exports.linkedin = [
|
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
|
-
"displayName": "
|
|
95
|
+
"displayName": "URL",
|
|
96
96
|
"name": "url",
|
|
97
97
|
"type": "string",
|
|
98
98
|
"default": "",
|
|
@@ -117,7 +117,7 @@ exports.linkedin = [
|
|
|
117
117
|
}
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
|
-
"displayName": "
|
|
120
|
+
"displayName": "URL",
|
|
121
121
|
"name": "url",
|
|
122
122
|
"type": "string",
|
|
123
123
|
"default": "",
|
|
@@ -174,7 +174,7 @@ exports.linkedin = [
|
|
|
174
174
|
]
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
|
-
"displayName": "
|
|
177
|
+
"displayName": "URL",
|
|
178
178
|
"name": "url",
|
|
179
179
|
"type": "string",
|
|
180
180
|
"default": "",
|
|
@@ -48,7 +48,7 @@ exports.reddit = [
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "Subreddit
|
|
51
|
+
"name": "Subreddit Posts",
|
|
52
52
|
"value": "reddit.subreddit.posts.list",
|
|
53
53
|
"action": "List Reddit subreddit posts",
|
|
54
54
|
"description": "Get posts from a specific subreddit.",
|
|
@@ -66,7 +66,7 @@ exports.reddit = [
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
|
-
"name": "Subreddit
|
|
69
|
+
"name": "Subreddit Search",
|
|
70
70
|
"value": "reddit.subreddit.search.list",
|
|
71
71
|
"action": "Search Reddit subreddit",
|
|
72
72
|
"description": "Search posts within a subreddit.",
|
|
@@ -84,7 +84,7 @@ exports.reddit = [
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"name": "Post
|
|
87
|
+
"name": "Post Comments",
|
|
88
88
|
"value": "reddit.post.comments.list",
|
|
89
89
|
"action": "List Reddit post comments",
|
|
90
90
|
"description": "Get comments on a Reddit post.",
|
|
@@ -134,7 +134,7 @@ exports.reddit = [
|
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
"displayName": "
|
|
137
|
+
"displayName": "URL",
|
|
138
138
|
"name": "url",
|
|
139
139
|
"type": "string",
|
|
140
140
|
"default": "",
|
|
@@ -575,7 +575,7 @@ exports.reddit = [
|
|
|
575
575
|
}
|
|
576
576
|
},
|
|
577
577
|
{
|
|
578
|
-
"displayName": "
|
|
578
|
+
"displayName": "URL",
|
|
579
579
|
"name": "url",
|
|
580
580
|
"type": "string",
|
|
581
581
|
"default": "",
|
|
@@ -72,7 +72,7 @@ exports.spotify = [
|
|
|
72
72
|
},
|
|
73
73
|
"options": [
|
|
74
74
|
{
|
|
75
|
-
"displayName": "Artist
|
|
75
|
+
"displayName": "Artist ID",
|
|
76
76
|
"name": "artistId",
|
|
77
77
|
"type": "string",
|
|
78
78
|
"default": "",
|
|
@@ -85,7 +85,7 @@ exports.spotify = [
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
|
-
"displayName": "
|
|
88
|
+
"displayName": "URL",
|
|
89
89
|
"name": "url",
|
|
90
90
|
"type": "string",
|
|
91
91
|
"default": "",
|
|
@@ -118,7 +118,7 @@ exports.spotify = [
|
|
|
118
118
|
},
|
|
119
119
|
"options": [
|
|
120
120
|
{
|
|
121
|
-
"displayName": "Album
|
|
121
|
+
"displayName": "Album ID",
|
|
122
122
|
"name": "albumId",
|
|
123
123
|
"type": "string",
|
|
124
124
|
"default": "",
|
|
@@ -131,7 +131,7 @@ exports.spotify = [
|
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
|
-
"displayName": "
|
|
134
|
+
"displayName": "URL",
|
|
135
135
|
"name": "url",
|
|
136
136
|
"type": "string",
|
|
137
137
|
"default": "",
|
|
@@ -164,7 +164,7 @@ exports.spotify = [
|
|
|
164
164
|
},
|
|
165
165
|
"options": [
|
|
166
166
|
{
|
|
167
|
-
"displayName": "Track
|
|
167
|
+
"displayName": "Track ID",
|
|
168
168
|
"name": "trackId",
|
|
169
169
|
"type": "string",
|
|
170
170
|
"default": "",
|
|
@@ -177,7 +177,7 @@ exports.spotify = [
|
|
|
177
177
|
}
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
|
-
"displayName": "
|
|
180
|
+
"displayName": "URL",
|
|
181
181
|
"name": "url",
|
|
182
182
|
"type": "string",
|
|
183
183
|
"default": "",
|
|
@@ -30,7 +30,7 @@ exports.telegram = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Channel
|
|
33
|
+
"name": "Channel Posts",
|
|
34
34
|
"value": "telegram.channel_posts.get",
|
|
35
35
|
"action": "List Telegram channel posts",
|
|
36
36
|
"description": "List recent posts from a public Telegram channel. Groups are not supported.",
|
|
@@ -48,7 +48,7 @@ exports.telegram = [
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "Channel
|
|
51
|
+
"name": "Channel Post",
|
|
52
52
|
"value": "telegram.channel_post.get",
|
|
53
53
|
"action": "Get Telegram channel post",
|
|
54
54
|
"description": "Get a single public post from a Telegram channel by handle and post ID. Groups are not supported.",
|
|
@@ -136,7 +136,7 @@ exports.telegram = [
|
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
|
-
"displayName": "Post
|
|
139
|
+
"displayName": "Post ID",
|
|
140
140
|
"name": "postId",
|
|
141
141
|
"type": "string",
|
|
142
142
|
"default": "",
|
|
@@ -29,7 +29,7 @@ exports.threads = [
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
"name": "Profile
|
|
32
|
+
"name": "Profile Posts",
|
|
33
33
|
"value": "threads.profile.posts.list",
|
|
34
34
|
"action": "List Threads profile posts",
|
|
35
35
|
"description": "Get posts from a specific Threads profile.",
|
|
@@ -41,7 +41,7 @@ exports.threads = [
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
"name": "Search
|
|
44
|
+
"name": "Search Posts",
|
|
45
45
|
"value": "threads.search.list",
|
|
46
46
|
"action": "Search Threads posts",
|
|
47
47
|
"description": "Search for posts on Threads.",
|
|
@@ -65,7 +65,7 @@ exports.threads = [
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
|
-
"name": "User
|
|
68
|
+
"name": "User Search",
|
|
69
69
|
"value": "threads.users.search",
|
|
70
70
|
"action": "Search Threads users",
|
|
71
71
|
"description": "Search for users on Threads.",
|
|
@@ -232,7 +232,7 @@ exports.threads = [
|
|
|
232
232
|
]
|
|
233
233
|
},
|
|
234
234
|
{
|
|
235
|
-
"displayName": "
|
|
235
|
+
"displayName": "URL",
|
|
236
236
|
"name": "url",
|
|
237
237
|
"type": "string",
|
|
238
238
|
"default": "",
|
|
@@ -30,7 +30,7 @@ exports.tiktok = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Profile
|
|
33
|
+
"name": "Profile Videos",
|
|
34
34
|
"value": "tiktok.profile.videos.list",
|
|
35
35
|
"action": "List TikTok profile videos",
|
|
36
36
|
"description": "Get videos from a specific TikTok profile.",
|
|
@@ -48,7 +48,7 @@ exports.tiktok = [
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "Profile
|
|
51
|
+
"name": "Profile Followers",
|
|
52
52
|
"value": "tiktok.profile.followers.list",
|
|
53
53
|
"action": "List TikTok profile followers",
|
|
54
54
|
"description": "Get followers from a specific TikTok profile.",
|
|
@@ -66,7 +66,7 @@ exports.tiktok = [
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
|
-
"name": "Profile
|
|
69
|
+
"name": "Profile Following",
|
|
70
70
|
"value": "tiktok.profile.following.list",
|
|
71
71
|
"action": "List TikTok profile following",
|
|
72
72
|
"description": "Get accounts followed by a specific TikTok profile.",
|
|
@@ -84,7 +84,7 @@ exports.tiktok = [
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"name": "Profile
|
|
87
|
+
"name": "Profile Region",
|
|
88
88
|
"value": "tiktok.profile.region.get",
|
|
89
89
|
"action": "Get TikTok profile region",
|
|
90
90
|
"description": "Get the region code reported for a TikTok profile.",
|
|
@@ -96,7 +96,7 @@ exports.tiktok = [
|
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
|
-
"name": "Live
|
|
99
|
+
"name": "Live Stream",
|
|
100
100
|
"value": "tiktok.profile.live.check",
|
|
101
101
|
"action": "Get TikTok live stream",
|
|
102
102
|
"description": "Check whether a TikTok creator is currently live.",
|
|
@@ -108,7 +108,7 @@ exports.tiktok = [
|
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
|
-
"name": "User
|
|
111
|
+
"name": "User Search",
|
|
112
112
|
"value": "tiktok.users.search",
|
|
113
113
|
"action": "Search TikTok users",
|
|
114
114
|
"description": "Search TikTok users by keyword.",
|
|
@@ -126,7 +126,7 @@ exports.tiktok = [
|
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
"name": "Search
|
|
129
|
+
"name": "Search Videos",
|
|
130
130
|
"value": "tiktok.search.videos.list",
|
|
131
131
|
"action": "Search TikTok videos",
|
|
132
132
|
"description": "Search TikTok videos by keyword.",
|
|
@@ -144,7 +144,7 @@ exports.tiktok = [
|
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"name": "Hashtag
|
|
147
|
+
"name": "Hashtag Search",
|
|
148
148
|
"value": "tiktok.search.hashtag.list",
|
|
149
149
|
"action": "Search TikTok by hashtag",
|
|
150
150
|
"description": "Search TikTok videos by hashtag.",
|
|
@@ -204,7 +204,7 @@ exports.tiktok = [
|
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
206
|
{
|
|
207
|
-
"name": "Trending
|
|
207
|
+
"name": "Trending Feed",
|
|
208
208
|
"value": "tiktok.feed.trending.list",
|
|
209
209
|
"action": "List TikTok trending feed",
|
|
210
210
|
"description": "Discover currently trending TikTok posts.",
|
|
@@ -216,7 +216,7 @@ exports.tiktok = [
|
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
|
-
"name": "Shop
|
|
219
|
+
"name": "Shop Product Search",
|
|
220
220
|
"value": "tiktok.shop.products.search",
|
|
221
221
|
"action": "Search TikTok Shop products",
|
|
222
222
|
"description": "Search products in TikTok Shop.",
|
|
@@ -228,7 +228,7 @@ exports.tiktok = [
|
|
|
228
228
|
}
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
|
-
"name": "Shop
|
|
231
|
+
"name": "Shop Store Products",
|
|
232
232
|
"value": "tiktok.shop.products.list",
|
|
233
233
|
"action": "List TikTok Shop store products",
|
|
234
234
|
"description": "Get products listed in a TikTok Shop store.",
|
|
@@ -246,7 +246,7 @@ exports.tiktok = [
|
|
|
246
246
|
}
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
|
-
"name": "Shop
|
|
249
|
+
"name": "Shop Product",
|
|
250
250
|
"value": "tiktok.product.get",
|
|
251
251
|
"action": "Get TikTok Shop product",
|
|
252
252
|
"description": "Get details for a TikTok Shop product.",
|
|
@@ -258,7 +258,7 @@ exports.tiktok = [
|
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
|
-
"name": "Shop
|
|
261
|
+
"name": "Shop Product Reviews",
|
|
262
262
|
"value": "tiktok.product.reviews.list",
|
|
263
263
|
"action": "List TikTok Shop product reviews",
|
|
264
264
|
"description": "Get buyer reviews for a TikTok Shop product.",
|
|
@@ -270,7 +270,7 @@ exports.tiktok = [
|
|
|
270
270
|
}
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
|
-
"name": "Profile
|
|
273
|
+
"name": "Profile Showcase Products",
|
|
274
274
|
"value": "tiktok.profile.showcaseProducts.list",
|
|
275
275
|
"action": "List TikTok profile showcase products",
|
|
276
276
|
"description": "Get products featured on a creator's TikTok showcase.",
|
|
@@ -294,7 +294,7 @@ exports.tiktok = [
|
|
|
294
294
|
"name": "handle",
|
|
295
295
|
"type": "string",
|
|
296
296
|
"default": "",
|
|
297
|
-
"description": "TikTok handle to look up, with or without leading @.",
|
|
297
|
+
"description": "TikTok handle to look up, with or without a leading @.",
|
|
298
298
|
"placeholder": "e.g. n8n",
|
|
299
299
|
"required": true,
|
|
300
300
|
"displayOptions": {
|
|
@@ -385,7 +385,7 @@ exports.tiktok = [
|
|
|
385
385
|
}
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
|
-
"displayName": "User
|
|
388
|
+
"displayName": "User ID",
|
|
389
389
|
"name": "userId",
|
|
390
390
|
"type": "string",
|
|
391
391
|
"default": "",
|
|
@@ -479,7 +479,7 @@ exports.tiktok = [
|
|
|
479
479
|
},
|
|
480
480
|
"options": [
|
|
481
481
|
{
|
|
482
|
-
"displayName": "User
|
|
482
|
+
"displayName": "User ID",
|
|
483
483
|
"name": "userId",
|
|
484
484
|
"type": "string",
|
|
485
485
|
"default": "",
|
|
@@ -894,7 +894,7 @@ exports.tiktok = [
|
|
|
894
894
|
]
|
|
895
895
|
},
|
|
896
896
|
{
|
|
897
|
-
"displayName": "
|
|
897
|
+
"displayName": "URL",
|
|
898
898
|
"name": "url",
|
|
899
899
|
"type": "string",
|
|
900
900
|
"default": "",
|
|
@@ -1007,7 +1007,7 @@ exports.tiktok = [
|
|
|
1007
1007
|
}
|
|
1008
1008
|
},
|
|
1009
1009
|
{
|
|
1010
|
-
"displayName": "
|
|
1010
|
+
"displayName": "URL",
|
|
1011
1011
|
"name": "url",
|
|
1012
1012
|
"type": "string",
|
|
1013
1013
|
"default": "",
|
|
@@ -1064,7 +1064,7 @@ exports.tiktok = [
|
|
|
1064
1064
|
]
|
|
1065
1065
|
},
|
|
1066
1066
|
{
|
|
1067
|
-
"displayName": "
|
|
1067
|
+
"displayName": "URL",
|
|
1068
1068
|
"name": "url",
|
|
1069
1069
|
"type": "string",
|
|
1070
1070
|
"default": "",
|
|
@@ -1119,11 +1119,11 @@ exports.tiktok = [
|
|
|
1119
1119
|
}
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
|
-
"displayName": "Use
|
|
1122
|
+
"displayName": "Use AI Fallback",
|
|
1123
1123
|
"name": "useAiFallback",
|
|
1124
1124
|
"type": "boolean",
|
|
1125
1125
|
"default": false,
|
|
1126
|
-
"description": "When true, uses
|
|
1126
|
+
"description": "When true, uses Social Fetch's AI fallback when a transcript is not otherwise available. Adds 10 credits on completed lookups (11 total with the base lookup).",
|
|
1127
1127
|
"routing": {
|
|
1128
1128
|
"send": {
|
|
1129
1129
|
"type": "query",
|
|
@@ -1343,7 +1343,7 @@ exports.tiktok = [
|
|
|
1343
1343
|
}
|
|
1344
1344
|
},
|
|
1345
1345
|
{
|
|
1346
|
-
"displayName": "
|
|
1346
|
+
"displayName": "URL",
|
|
1347
1347
|
"name": "url",
|
|
1348
1348
|
"type": "string",
|
|
1349
1349
|
"default": "",
|
|
@@ -1466,7 +1466,7 @@ exports.tiktok = [
|
|
|
1466
1466
|
]
|
|
1467
1467
|
},
|
|
1468
1468
|
{
|
|
1469
|
-
"displayName": "
|
|
1469
|
+
"displayName": "URL",
|
|
1470
1470
|
"name": "url",
|
|
1471
1471
|
"type": "string",
|
|
1472
1472
|
"default": "",
|
|
@@ -1606,7 +1606,7 @@ exports.tiktok = [
|
|
|
1606
1606
|
},
|
|
1607
1607
|
"options": [
|
|
1608
1608
|
{
|
|
1609
|
-
"displayName": "
|
|
1609
|
+
"displayName": "URL",
|
|
1610
1610
|
"name": "url",
|
|
1611
1611
|
"type": "string",
|
|
1612
1612
|
"default": "",
|
|
@@ -1620,7 +1620,7 @@ exports.tiktok = [
|
|
|
1620
1620
|
}
|
|
1621
1621
|
},
|
|
1622
1622
|
{
|
|
1623
|
-
"displayName": "Product
|
|
1623
|
+
"displayName": "Product ID",
|
|
1624
1624
|
"name": "productId",
|
|
1625
1625
|
"type": "string",
|
|
1626
1626
|
"default": "",
|
|
@@ -30,7 +30,7 @@ exports.twitter = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Profile
|
|
33
|
+
"name": "Profile Tweets",
|
|
34
34
|
"value": "twitter.profile.tweets.list",
|
|
35
35
|
"action": "List Twitter profile tweets",
|
|
36
36
|
"description": "Get popular tweets from a specific X profile.",
|
|
@@ -84,7 +84,7 @@ exports.twitter = [
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"name": "Community
|
|
87
|
+
"name": "Community Tweets",
|
|
88
88
|
"value": "twitter.community.tweets.list",
|
|
89
89
|
"action": "List Twitter community tweets",
|
|
90
90
|
"description": "Get tweets from an X community.",
|
|
@@ -425,7 +425,7 @@ exports.twitter = [
|
|
|
425
425
|
"value": "hu"
|
|
426
426
|
},
|
|
427
427
|
{
|
|
428
|
-
"name": "
|
|
428
|
+
"name": "ID",
|
|
429
429
|
"value": "id"
|
|
430
430
|
},
|
|
431
431
|
{
|
|
@@ -497,7 +497,7 @@ exports.twitter = [
|
|
|
497
497
|
]
|
|
498
498
|
},
|
|
499
499
|
{
|
|
500
|
-
"displayName": "
|
|
500
|
+
"displayName": "URL",
|
|
501
501
|
"name": "url",
|
|
502
502
|
"type": "string",
|
|
503
503
|
"default": "",
|
|
@@ -554,7 +554,7 @@ exports.twitter = [
|
|
|
554
554
|
]
|
|
555
555
|
},
|
|
556
556
|
{
|
|
557
|
-
"displayName": "
|
|
557
|
+
"displayName": "URL",
|
|
558
558
|
"name": "url",
|
|
559
559
|
"type": "string",
|
|
560
560
|
"default": "",
|
|
@@ -579,7 +579,7 @@ exports.twitter = [
|
|
|
579
579
|
}
|
|
580
580
|
},
|
|
581
581
|
{
|
|
582
|
-
"displayName": "
|
|
582
|
+
"displayName": "URL",
|
|
583
583
|
"name": "url",
|
|
584
584
|
"type": "string",
|
|
585
585
|
"default": "",
|
|
@@ -67,11 +67,11 @@ exports.web = [
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"displayName": "
|
|
70
|
+
"displayName": "URL",
|
|
71
71
|
"name": "url",
|
|
72
72
|
"type": "string",
|
|
73
73
|
"default": "",
|
|
74
|
-
"description": "
|
|
74
|
+
"description": "Web page URL to fetch.",
|
|
75
75
|
"placeholder": "e.g. https://example.com/page",
|
|
76
76
|
"required": true,
|
|
77
77
|
"routing": {
|
|
@@ -179,11 +179,11 @@ exports.web = [
|
|
|
179
179
|
]
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
|
-
"displayName": "
|
|
182
|
+
"displayName": "URL",
|
|
183
183
|
"name": "url",
|
|
184
184
|
"type": "string",
|
|
185
185
|
"default": "",
|
|
186
|
-
"description": "
|
|
186
|
+
"description": "Web page URL to fetch.",
|
|
187
187
|
"placeholder": "e.g. https://example.com/page",
|
|
188
188
|
"required": true,
|
|
189
189
|
"routing": {
|
|
@@ -229,11 +229,11 @@ exports.web = [
|
|
|
229
229
|
}
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
|
-
"displayName": "
|
|
232
|
+
"displayName": "URL",
|
|
233
233
|
"name": "url",
|
|
234
234
|
"type": "string",
|
|
235
235
|
"default": "",
|
|
236
|
-
"description": "
|
|
236
|
+
"description": "Web page URL to fetch.",
|
|
237
237
|
"placeholder": "e.g. https://example.com/page",
|
|
238
238
|
"required": true,
|
|
239
239
|
"routing": {
|
|
@@ -254,21 +254,11 @@ exports.web = [
|
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
|
-
"displayName": "
|
|
258
|
-
"name": "
|
|
259
|
-
"type": "
|
|
260
|
-
"
|
|
261
|
-
|
|
262
|
-
},
|
|
263
|
-
"default": [],
|
|
264
|
-
"description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).",
|
|
265
|
-
"required": true,
|
|
266
|
-
"routing": {
|
|
267
|
-
"send": {
|
|
268
|
-
"type": "query",
|
|
269
|
-
"property": "url"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
257
|
+
"displayName": "Additional Fields",
|
|
258
|
+
"name": "additionalOptions",
|
|
259
|
+
"type": "collection",
|
|
260
|
+
"placeholder": "Add Field",
|
|
261
|
+
"default": {},
|
|
272
262
|
"displayOptions": {
|
|
273
263
|
"show": {
|
|
274
264
|
"resource": [
|
|
@@ -278,6 +268,24 @@ exports.web = [
|
|
|
278
268
|
"web.crawl.run"
|
|
279
269
|
]
|
|
280
270
|
}
|
|
281
|
-
}
|
|
271
|
+
},
|
|
272
|
+
"options": [
|
|
273
|
+
{
|
|
274
|
+
"displayName": "URL",
|
|
275
|
+
"name": "url",
|
|
276
|
+
"type": "string",
|
|
277
|
+
"typeOptions": {
|
|
278
|
+
"multipleValues": true
|
|
279
|
+
},
|
|
280
|
+
"default": [],
|
|
281
|
+
"description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).",
|
|
282
|
+
"routing": {
|
|
283
|
+
"send": {
|
|
284
|
+
"type": "query",
|
|
285
|
+
"property": "url"
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
]
|
|
282
290
|
}
|
|
283
291
|
];
|
|
@@ -30,7 +30,7 @@ exports.youtube = [
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "Channel
|
|
33
|
+
"name": "Channel Videos",
|
|
34
34
|
"value": "youtube.channel.videos.list",
|
|
35
35
|
"action": "List YouTube channel videos",
|
|
36
36
|
"description": "Get videos published by a specific YouTube channel.",
|
|
@@ -48,7 +48,7 @@ exports.youtube = [
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "Channel
|
|
51
|
+
"name": "Channel Shorts",
|
|
52
52
|
"value": "youtube.channel.shorts.list",
|
|
53
53
|
"action": "List YouTube channel shorts",
|
|
54
54
|
"description": "Get Shorts published by a specific YouTube channel.",
|
|
@@ -78,7 +78,7 @@ exports.youtube = [
|
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"name": "Community
|
|
81
|
+
"name": "Community Post",
|
|
82
82
|
"value": "youtube.community.post.get",
|
|
83
83
|
"action": "Get YouTube community post",
|
|
84
84
|
"description": "Get the contents of a YouTube community post.",
|
|
@@ -108,7 +108,7 @@ exports.youtube = [
|
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
|
-
"name": "Hashtag
|
|
111
|
+
"name": "Hashtag Search",
|
|
112
112
|
"value": "youtube.search.hashtag.list",
|
|
113
113
|
"action": "Search YouTube by hashtag",
|
|
114
114
|
"description": "Search YouTube by hashtag.",
|
|
@@ -126,7 +126,7 @@ exports.youtube = [
|
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
"name": "Trending
|
|
129
|
+
"name": "Trending Shorts",
|
|
130
130
|
"value": "youtube.shorts.trending.list",
|
|
131
131
|
"action": "List trending YouTube Shorts",
|
|
132
132
|
"description": "Discover currently trending YouTube Shorts.",
|
|
@@ -217,7 +217,7 @@ exports.youtube = [
|
|
|
217
217
|
},
|
|
218
218
|
"options": [
|
|
219
219
|
{
|
|
220
|
-
"displayName": "Channel
|
|
220
|
+
"displayName": "Channel ID",
|
|
221
221
|
"name": "channelId",
|
|
222
222
|
"type": "string",
|
|
223
223
|
"default": "",
|
|
@@ -244,7 +244,7 @@ exports.youtube = [
|
|
|
244
244
|
}
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
|
-
"displayName": "
|
|
247
|
+
"displayName": "URL",
|
|
248
248
|
"name": "url",
|
|
249
249
|
"type": "string",
|
|
250
250
|
"default": "",
|
|
@@ -294,7 +294,7 @@ exports.youtube = [
|
|
|
294
294
|
},
|
|
295
295
|
"options": [
|
|
296
296
|
{
|
|
297
|
-
"displayName": "Channel
|
|
297
|
+
"displayName": "Channel ID",
|
|
298
298
|
"name": "channelId",
|
|
299
299
|
"type": "string",
|
|
300
300
|
"default": "",
|
|
@@ -393,7 +393,7 @@ exports.youtube = [
|
|
|
393
393
|
},
|
|
394
394
|
"options": [
|
|
395
395
|
{
|
|
396
|
-
"displayName": "Channel
|
|
396
|
+
"displayName": "Channel ID",
|
|
397
397
|
"name": "channelId",
|
|
398
398
|
"type": "string",
|
|
399
399
|
"default": "",
|
|
@@ -445,7 +445,7 @@ exports.youtube = [
|
|
|
445
445
|
]
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
|
-
"displayName": "Playlist
|
|
448
|
+
"displayName": "Playlist ID",
|
|
449
449
|
"name": "playlistId",
|
|
450
450
|
"type": "string",
|
|
451
451
|
"default": "",
|
|
@@ -469,7 +469,7 @@ exports.youtube = [
|
|
|
469
469
|
}
|
|
470
470
|
},
|
|
471
471
|
{
|
|
472
|
-
"displayName": "
|
|
472
|
+
"displayName": "URL",
|
|
473
473
|
"name": "url",
|
|
474
474
|
"type": "string",
|
|
475
475
|
"default": "",
|
|
@@ -647,7 +647,7 @@ exports.youtube = [
|
|
|
647
647
|
"value": "under_3_min"
|
|
648
648
|
},
|
|
649
649
|
{
|
|
650
|
-
"name": "Between 3
|
|
650
|
+
"name": "Between 3 and 20 Min",
|
|
651
651
|
"value": "between_3_and_20_min"
|
|
652
652
|
},
|
|
653
653
|
{
|
|
@@ -776,7 +776,7 @@ exports.youtube = [
|
|
|
776
776
|
]
|
|
777
777
|
},
|
|
778
778
|
{
|
|
779
|
-
"displayName": "
|
|
779
|
+
"displayName": "URL",
|
|
780
780
|
"name": "url",
|
|
781
781
|
"type": "string",
|
|
782
782
|
"default": "",
|
|
@@ -850,7 +850,7 @@ exports.youtube = [
|
|
|
850
850
|
}
|
|
851
851
|
},
|
|
852
852
|
{
|
|
853
|
-
"displayName": "
|
|
853
|
+
"displayName": "URL",
|
|
854
854
|
"name": "url",
|
|
855
855
|
"type": "string",
|
|
856
856
|
"default": "",
|
|
@@ -934,7 +934,7 @@ exports.youtube = [
|
|
|
934
934
|
}
|
|
935
935
|
},
|
|
936
936
|
{
|
|
937
|
-
"displayName": "
|
|
937
|
+
"displayName": "URL",
|
|
938
938
|
"name": "url",
|
|
939
939
|
"type": "string",
|
|
940
940
|
"default": "",
|
|
@@ -12,7 +12,7 @@ function nextCursorFrom(items) {
|
|
|
12
12
|
return undefined;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
* Cursor paginator for
|
|
15
|
+
* Cursor paginator for Social Fetch list endpoints.
|
|
16
16
|
*
|
|
17
17
|
* Gated by the `returnAll` parameter via `routing.send.paginate`: when
|
|
18
18
|
* `returnAll` is false n8n performs a single request and this returns only the
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-socialfetch",
|
|
3
|
-
"version": "0.13.
|
|
4
|
-
"description": "Fetch social media and web data with the
|
|
3
|
+
"version": "0.13.5",
|
|
4
|
+
"description": "Fetch social media and web data with the Social Fetch API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
7
7
|
"socialfetch",
|