Latest Activity
Loading stream...

Maker Releases

Loading...

Recent Event Log

Last 10 events

Event Log

Last 1000 events

Public API & Integrations

MakerWatch provides open data access for developers, researchers, and collectors.

HTTP API
GET https://makerwatch.space/api/public/recent-events
Returns the 10 most recent detected transactions (sent or received) across all tracked collections.
// Example Response { "meta": { "limit": 10 }, "data": [ { "maker": "Casascius", "series": "Series 2", "serial": "13025", "type": "sent", "amount_btc": "0.99899400", "timestamp": "2023-10-27T14:30:00.000Z", "tx_id": "a1b2c3d4..." } ] }
RSS Feeds
RSS https://makerwatch.space/api/public/feed.xml
Subscribe to real-time updates using any standard RSS reader (Feedly, Reeder, etc.) or use this URL to trigger automations.
Discord Alerts Tutorial

Want to get an alert in your Discord server whenever a physical coin moves?

Method 1: No-Code (Recommended)
  1. Invite a free RSS bot like MonitoRSS to your server.
  2. Use the dashboard command to add a new feed.
  3. Paste our RSS URL: https://makerwatch.space/api/public/feed.xml
  4. Done! The bot will post new transactions to your channel automatically.
Method 2: Custom Bot (Node.js Script)

If you prefer to host your own script, use this simple poller to forward events to a Discord Webhook.

const axios = require('axios'); const DISCORD_WEBHOOK_URL = 'YOUR_WEBHOOK_URL_HERE'; const API_URL = 'https://makerwatch.space/api/public/recent-events'; let lastProcessedTx = null; async function checkEvents() { try { const res = await axios.get(API_URL); const events = res.data.data; // On first run, just set the benchmark if (!lastProcessedTx) { lastProcessedTx = events[0].tx_id; console.log("Initialized. Waiting for new events..."); return; } // Check for new events since last processed const newEvents = []; for (let e of events) { if (e.tx_id === lastProcessedTx) break; newEvents.push(e); } if (newEvents.length > 0) { // Update benchmark lastProcessedTx = newEvents[0].tx_id; // Post to Discord for (let e of newEvents.reverse()) { await axios.post(DISCORD_WEBHOOK_URL, { content: `🚨 **MOVEMENT DETECTED** 🚨\n**${e.maker}** - ${e.release_name} #${e.serial_num}\nType: ${e.type.toUpperCase()}\nAmount: ${e.amount_btc} BTC\nhttps://mempool.space/tx/${e.tx_id}` }); } } } catch (err) { console.error("Poll Error", err.message); } } // Poll every 5 minutes setInterval(checkEvents, 300000); checkEvents();
Email & SMS Alerts

You can receive Email or SMS alerts without writing any code by using services like IFTTT or Zapier.

  • IFTTT: Create an Applet using "RSS Feed" as the trigger ("New feed item") and "Email" or "SMS" as the action.
  • Zapier: Create a Zap with "RSS by Zapier" as the trigger and your preferred notification method as the action.

About MakerWatch

Created By

MakerWatch was created and is maintained by hybridsole.

For bug reports, feature enhancements, or to provide additional address lists for tracking, please email me at: hybridsole@gmail.com or message me on Bitcointalk.

License & Copyright

This site is free software and can be used with attribution. It is provided "as is" without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement.

Credits & Inspiration

This project could not have been possible without the physical crypto community.

Bitcointalk Community: Thank you to the dedicated members of Bitcointalk collectibles board, who have spent years compiling vast resources and assembling public address lists that make tools like this possible.

Raghav Sood: Special thanks to Raghav Sood (raghavsood.com) and his website Collectible.money. Raghav created the most comprehensive site of this kind, which served as inspiration for MakerWatch. Some of the address data and collection information used to build this tracker were sourced from his work.

Community Resources: Additional thanks to Naypalm's uberbills.com, Anduck's anduck.net, and Melik's casasciustracker.com for providing additional tools to track collectibles.