AI & Automation
Automating with n8n or Zapier
Build no-code automation workflows to feed content from RSS, GitHub, Twitter and more into Curyloop.
Curyloop Team1 min read
automationn8nzapierapi

Why automate?
Instead of manually saving every link, set up automated pipelines that monitor sources and push relevant content to Curyloop. Perfect for:
- RSS feeds from tech blogs
- GitHub release notifications
- HackerNews top stories
- Twitter/X bookmarks
- Newsletter content
n8n workflow example
1. Trigger: RSS Feed
Add an RSS Read node with your feed URL (e.g., https://blog.example.com/rss).
2. Filter (optional)
Add a Filter node to only pass through items matching keywords.
3. Push to Curyloop
Add an HTTP Request node:
json
{
"method": "POST",
"url": "https://curyloop.com/api/v1/sessions/items",
"headers": {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
"body": {
"session_id": "your-session-id",
"url": "{{ $json.link }}",
"title": "{{ $json.title }}",
"tags": ["auto-curated", "rss"]
}
}
4. Schedule
Set the trigger to run hourly, daily, or weekly.
Zapier integration
- Create a new Zap
- Trigger: Choose your source (RSS, Gmail, Slack, etc.)
- Action: Use Webhooks by Zapier → POST
- Configure the URL and body same as the n8n example above
Common automation recipes
| Source | Trigger | Tags |
|---|---|---|
| HackerNews | Top stories RSS | #hn, #trending |
| GitHub | Release notifications | #releases, #tools |
| Subreddit RSS | #reddit, #discussion | |
| Newsletter | Gmail filter | #newsletter, #digest |
| Twitter/X | Bookmarks via IFTTT | #twitter, #saved |
Tips
- Always add an
auto-curatedtag so you can distinguish manual vs. automated items - Start with one source, verify it works, then expand
- Use session IDs for active sessions - rotate them weekly
- Set up error notifications so you know when a pipeline breaks
Ready to try it yourself?
Start building your team's knowledge base today. Free to start, no credit card required.