n8n-nodes-socialfetch 0.13.4 → 0.14.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.
- 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 +478 -13
- 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 +7 -7
- 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": "",
|