Step-by-step

Guides

Practical, step-by-step guides to get the most out of Curyloop. From your first session to advanced automation.

Back to Guides
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
Automating content curation with n8n and Zapier

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

  1. Create a new Zap
  2. Trigger: Choose your source (RSS, Gmail, Slack, etc.)
  3. Action: Use Webhooks by ZapierPOST
  4. Configure the URL and body same as the n8n example above

Common automation recipes

SourceTriggerTags
HackerNewsTop stories RSS#hn, #trending
GitHubRelease notifications#releases, #tools
RedditSubreddit RSS#reddit, #discussion
NewsletterGmail filter#newsletter, #digest
Twitter/XBookmarks via IFTTT#twitter, #saved

Tips

  • Always add an auto-curated tag 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
Share

Ready to try it yourself?

Start building your team's knowledge base today. Free to start, no credit card required.