n8n Projects
Ready-made workflow templates that connect apimie APIs to your favourite tools. Copy the steps, paste into n8n, and wire up your API key.
Daily Polymarket Whales Digest → Telegram
beginnerAutomatically fetch the top whale movements from Polymarket every morning and send a formatted summary to your Telegram channel or group.
Use case: Stay informed about major market participants without monitoring dashboards manually. Perfect for traders who want a daily briefing.
Workflow steps
- 1Schedule Trigger: runs every day at 07:00 UTC
- 2HTTP Request: call apimie Polymarket WHALES API with your API key
- 3Code node: filter markets with whale positions > $50,000
- 4Code node: format a human-readable message with market names, odds, and top whale sizes
- 5Telegram node: send the formatted message to your channel via Bot API
Real-Time Whale Alert Discord Bot
intermediateMonitor Polymarket for large whale positions in real-time and post instant alerts to a dedicated Discord channel whenever a whale buys or sells more than a configurable threshold.
Use case: Get notified the moment a whale enters or exits a large position, giving you an edge to react before the market moves.
Workflow steps
- 1Schedule Trigger: polls every 15 minutes
- 2HTTP Request: fetch latest whale data from apimie API
- 3Code node: compare against previous run data stored in n8n static data
- 4IF node: check if any new position exceeds $75,000 threshold
- 5Code node: build Discord embed with market name, outcome, size, wallet address prefix, and price change
- 6HTTP Request: POST embed to Discord webhook URL
- 7Set node: persist current dataset to static data for next comparison run
Polymarket Data → Google Sheets Weekly Report
intermediateEvery Sunday, pull 7 days of whale activity data and append a structured weekly report to a Google Sheets spreadsheet for historical tracking and analysis.
Use case: Build a historical record of whale movements and market odds over time. Ideal for researchers and analysts who want to identify patterns.
Workflow steps
- 1Schedule Trigger: runs every Sunday at 08:00 UTC
- 2HTTP Request: call apimie API with lookbackHours=168 (7 days) using a Pro/Trader plan key
- 3Code node: aggregate data — total volume, largest single positions, most active markets
- 4Code node: flatten nested whalePositions into rows for spreadsheet format
- 5Google Sheets node: append rows to "Weekly Whale Activity" sheet
- 6Google Sheets node: update summary dashboard tab with aggregated stats
- 7Gmail node: send link to the updated sheet to your email
Slack Trading Signal Bot (Whale Buy > $50k)
intermediatePost structured trading signal messages to a Slack channel whenever a whale buys more than $50k on a single Polymarket outcome, including context on current odds and market momentum.
Use case: Share actionable market intelligence with your trading team in real-time through the tools you already use.
Workflow steps
- 1Schedule Trigger: runs every 20 minutes during peak hours (08:00–22:00 UTC)
- 2HTTP Request: fetch fresh whale data from apimie Polymarket WHALES API
- 3Code node: extract positions where outcome is "Yes" or "No" and size > 50000
- 4IF node: skip if no qualifying positions found (prevents empty Slack noise)
- 5Code node: build Slack Block Kit message with market title, whale size, current odds, 1h and 24h price changes
- 6Slack node: post message to #trading-signals channel with @here mention for very large positions (>$100k)
- 7Set node: log signal to n8n execution data for auditing
Email Digest: Top Moving Markets + Whale Activity
advancedSend a beautifully formatted HTML email digest twice a day (morning and evening) covering the top 5 most active markets by whale volume and the biggest price movers in the last 24 hours.
Use case: A complete briefing for busy traders and analysts who prefer email over chat apps — everything you need to know in one clean digest.
Workflow steps
- 1Schedule Trigger: runs at 07:00 and 19:00 UTC daily
- 2HTTP Request: call apimie API for last 24h of whale data
- 3Code node: sort markets by total whale volume (sum of all whalePositions sizes)
- 4Code node: identify top 3 price movers (largest absolute priceChange24h)
- 5Code node: generate HTML email template with market cards, whale tables, and price change badges
- 6SendGrid / Gmail node: send HTML email to subscriber list stored in Google Sheets
- 7Code node: log delivery count and timestamp to a monitoring spreadsheet
Want a custom n8n workflow built around apimie APIs?