n8n-nodes-influtics 1.0.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/LICENSE +21 -0
- package/README.md +65 -0
- package/package.json +56 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Influtics
|
|
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,65 @@
|
|
|
1
|
+
# n8n-nodes-influtics
|
|
2
|
+
|
|
3
|
+
Official [Influtics](https://influtics.com) integration for [n8n](https://n8n.io) — track influencer videos, bloggers, and trends across TikTok, Instagram, YouTube, VK, and more.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
1. In n8n, open **Settings → Community Nodes**.
|
|
8
|
+
2. Click **Install a community node**.
|
|
9
|
+
3. Enter `n8n-nodes-influtics` and confirm.
|
|
10
|
+
|
|
11
|
+
After install, configure the **Influtics API** credential with your API key from the Influtics dashboard under **Settings → API**.
|
|
12
|
+
|
|
13
|
+
## Operations
|
|
14
|
+
|
|
15
|
+
### Influtics Video
|
|
16
|
+
|
|
17
|
+
| Operation | Method | Endpoint |
|
|
18
|
+
|-----------|--------|----------|
|
|
19
|
+
| Track | `POST` | `/v1/videos/track` |
|
|
20
|
+
| Get Stats | `GET` | `/v1/videos/stats` |
|
|
21
|
+
| Get By ID | `GET` | `/v1/videos/by-id/{id}` |
|
|
22
|
+
| Get By External ID | `GET` | `/v1/videos/by-external-id/{id}` |
|
|
23
|
+
| Update By External ID | `PATCH` | `/v1/videos/by-external-id/{id}` |
|
|
24
|
+
|
|
25
|
+
### Influtics Blogger
|
|
26
|
+
|
|
27
|
+
| Operation | Method | Endpoint |
|
|
28
|
+
|-----------|--------|----------|
|
|
29
|
+
| Track | `POST` | `/v1/bloggers/track` (returns `job_id`) |
|
|
30
|
+
| Get Job | `GET` | `/v1/bloggers/jobs/{job_id}` |
|
|
31
|
+
| By Username | `GET` | `/v1/bloggers/by-username/{username}` |
|
|
32
|
+
|
|
33
|
+
The **Track** operation is async; pair it with **Get Job** using the expression `{{ $json.job_id }}` in the next workflow step.
|
|
34
|
+
|
|
35
|
+
### Influtics Trend
|
|
36
|
+
|
|
37
|
+
| Operation | Method | Endpoint |
|
|
38
|
+
|-----------|--------|----------|
|
|
39
|
+
| Search | `GET` | `/v1/trends/search` |
|
|
40
|
+
|
|
41
|
+
### Influtics Account
|
|
42
|
+
|
|
43
|
+
| Operation | Method | Endpoint |
|
|
44
|
+
|-----------|--------|----------|
|
|
45
|
+
| Get Usage | `GET` | `/v1/account/usage` |
|
|
46
|
+
| Get Limits | `GET` | `/v1/account/limits` |
|
|
47
|
+
|
|
48
|
+
## Errors
|
|
49
|
+
|
|
50
|
+
| Code | Meaning |
|
|
51
|
+
|------|---------|
|
|
52
|
+
| `UNAUTHORIZED` | API key is missing or invalid. |
|
|
53
|
+
| `PAID_PLAN_REQUIRED` | This endpoint requires a paid subscription. Upgrade at the URL surfaced in the error description. |
|
|
54
|
+
| `BLOGGER_NOT_TRACKED` | Creator isn't tracked by your org — run **Influtics Blogger → Track** first. |
|
|
55
|
+
| `JOB_TIMEOUT` | The async job didn't complete in time — poll again or retry. |
|
|
56
|
+
| `VALIDATION_ERROR` | A required field is missing or invalid. |
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
- Public API reference: https://docs.influtics.com/
|
|
61
|
+
- Issues: https://github.com/Influtics/n8n-nodes-influtics/issues
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
MIT — see [LICENSE](LICENSE).
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-influtics",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Official Influtics integration for n8n — track influencer videos, bloggers, and trends",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Influtics",
|
|
7
|
+
"email": "team@influtics.com",
|
|
8
|
+
"url": "https://influtics.com"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"n8n",
|
|
12
|
+
"n8n-community-node",
|
|
13
|
+
"n8n-community-node-package",
|
|
14
|
+
"n8ncommunity",
|
|
15
|
+
"influtics",
|
|
16
|
+
"influencer-marketing"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "dist/index.js",
|
|
21
|
+
"files": ["dist"],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "n8n-node build",
|
|
24
|
+
"dev": "n8n-node dev",
|
|
25
|
+
"lint": "eslint . --ext .ts",
|
|
26
|
+
"lintfix": "eslint . --ext .ts --fix",
|
|
27
|
+
"format": "prettier --write .",
|
|
28
|
+
"test": "vitest run --passWithNoTests",
|
|
29
|
+
"test:watch": "vitest"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=20.0.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"n8n-nodes-base": "^1.0.0",
|
|
36
|
+
"n8n-workflow": "^1.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/node": "^22.0.0",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
41
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
42
|
+
"eslint": "^8.57.0",
|
|
43
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.0",
|
|
44
|
+
"@n8n/node-cli": "^0.44.5",
|
|
45
|
+
"nock": "^14.0.0",
|
|
46
|
+
"prettier": "^3.3.0",
|
|
47
|
+
"typescript": "^5.7.0",
|
|
48
|
+
"vitest": "^2.1.0",
|
|
49
|
+
"vitest-mock-extended": "^2.0.0"
|
|
50
|
+
},
|
|
51
|
+
"n8n": {
|
|
52
|
+
"n8nNodesApiVersion": 1,
|
|
53
|
+
"nodes": ["dist/nodes/**/*.node.js"],
|
|
54
|
+
"credentials": ["dist/credentials/**/*.credentials.js"]
|
|
55
|
+
}
|
|
56
|
+
}
|