Building a Concert Radar with OpenClaw: Scraping Multiple Sources for Artist Shows

A developer built a concert radar tool using OpenClaw running on a VPS to automatically find concert announcements for artists they follow on Spotify. The system specifically scans for NYC concerts and surfaces shows before they appear in many other places.
How the Concert Radar Works
The system follows this workflow:
- Pulls approximately 100 artists from Spotify using followed artists, top artists, and recently played data
- Scans multiple sources daily including venue websites (Bowery Ballroom, Brooklyn Steel, etc.), DICE, Bandsintown, and Ticketmaster
- Normalizes all events into a single format
- Matches artist names against the Spotify artist list
- Deduplicates events across sources
- Tracks previously seen events to only report new announcements
- Runs daily via an OpenClaw cron job
Technical Challenges and Solutions
One particularly tricky aspect was scraping DICE, where events aren't in the page HTML but are buried in a Next.js payload. The script extracts data from <script id="__NEXT_DATA__"> by parsing props.pageProps.events.
The system also handles title normalization, converting complex event titles like "Sammy Virji North America Tour 2026 Part 1 (Friday)" into clean artist matches ("Sammy Virji").
An example event the system caught: Sammy Virji on July 31, 2026 at Brooklyn Army Terminal: Pier 4, which surfaced from DICE before appearing in other sources.
📖 Read the full source: r/openclaw
👀 See Also

OpenClaw Implementation for Logistics Company: Email Parsing and Status Updates
A developer configured OpenClaw for a small logistics company to automate email parsing, spreadsheet cross-referencing, and status updates, saving the owner 2-3 hours daily with minimal code.

V100 Cluster vs. MoE: 12x SXM2 32GB Build with Claude Code Orchestration
A lawyer running 12x V100 32GB SXM2 on Threadripper Pro reports that MoE models are the only viable path on Volta, with Qwen3.5-122B-A10B decoding at ~50 tok/s on 4 boards. The full stack uses Claude Code to orchestrate 5 local models across 16 GPUs.

Debugging a Tiny AI Agent on an Old Nokia Phone: 18 Attempts to Success
A developer documented 18 failed attempts to run Picobot, a ~12 MB AI agent, on an old Nokia phone via Termux, testing free models, OpenRouter, and Groq before settling on Google's Gemini Flash API for a fast, reliable setup.

Developer Builds WhatsApp Business MCP Server with Claude Code in Single Session
A developer used Claude Code to build a complete WhatsApp Business MCP server with 35 tools, 72 tests, and multi-tenant support in one coding session. The server connects Claude with WhatsApp Business API and includes unique webhook functionality for receiving incoming messages.