@seranking/n8n-nodes-seranking 1.3.6 → 1.3.7

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 (2) hide show
  1. package/README.md +16 -1
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -556,7 +556,11 @@ For detailed API specifications, visit [SE Ranking API Documentation](https://se
556
556
 
557
557
  ## Version History
558
558
 
559
- ### v1.3.5 (Current)
559
+ ### v1.3.6 (Current)
560
+
561
+ * 🔧 **FIX: Rate limiting compatibility** - Replaced setTimeout with n8n-workflow sleep function for n8n verified node compliance
562
+
563
+ ### v1.3.5
560
564
 
561
565
  * ✅ **NEW: SERP Pingback URL** - Webhook notifications when SERP tasks complete
562
566
  * ✅ **NEW: AI Search Leaderboard** - Compare visibility against competitors across LLMs
@@ -666,7 +670,18 @@ For detailed API specifications, visit [SE Ranking API Documentation](https://se
666
670
  - **API Credits**: Some operations consume API credits (check your plan)
667
671
 
668
672
  ---
673
+ ## Rate Limiting
674
+
675
+ This node includes built-in rate limiting (300ms delay between requests) to help prevent hitting SE Ranking API limits.
676
+
677
+ If you still encounter "429 Too Many Requests" errors when processing large amounts of data, you can use n8n's built-in solutions:
669
678
 
679
+ 1. **Retry On Fail**: Open node Settings → enable "Retry On Fail" → set "Wait Between Tries" to 1000ms or more
680
+ 2. **Split In Batches + Wait**: Use the "Loop Over Items" node to process items in smaller batches with a "Wait" node between requests
681
+
682
+ For more details, see [n8n's rate limiting documentation](https://docs.n8n.io/integrations/builtin/rate-limits/).
683
+
684
+ ---
670
685
  ## Troubleshooting
671
686
 
672
687
  ### Pingback Not Received
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seranking/n8n-nodes-seranking",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "n8n connector for SE Ranking API - AI Search, Backlinks, Domain Analysis, Keyword Research, and Website Audit",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/seranking/n8n-nodes-seranking",
@@ -65,6 +65,5 @@
65
65
  "node": ">=18.0.0"
66
66
  },
67
67
  "dependencies": {
68
- "n8n-core": "^2.2.1"
69
68
  }
70
69
  }