Setlist.fm Scraper
Spider read setlist.fm in 155 ms without a browser and returned 374 lines of clean markdown, including sections like "Find setlists for your favorite artists", "Popular Setlists" and "Active Users".
# Find setlists for your favorite artistsThe Irish singer's life was celebrated by members of U2, Pearl Jam, The Frames, and his former partner in Swell SeasonFrom basement-made Southern rap and breakneck British punk to dream-pop soundscapes and euphoric electronic spectacles, these are the artists worth discovering in Golden Gate Park.## Popular SetlistsRogers Stadium, Toronto, ON - Aug 4, 20262026](setlist/foo-fighters/2026/rogers-stadium-toronto-on-canada-b4e0d7e.html)Lollapalooza 2026 - Jul 31, 20262026](setlist/charli-xcx/2026/grant-park-t-mobile-stage-chicago-il-13493dc5.html)2026](setlist/the-smashing-pumpkins/2026/grant-park-bud-light-stage-chicago-il-b493dd6.html)Hersheypark Stadium, Hershey, PA - Aug 1, 20262026](setlist/guns-n-roses/2026/hersheypark-stadium-hershey-pa-334c9401.html)Madison Square Garden, New York, NY - Aug 1, 20262026](setlist/rush/2026/madison-square-garden-new-york-ny-4b4eb78a.html)Madison Square Garden, New York, NY - Jul 30, 20262026](setlist/rush/2026/madison-square-garden-new-york-ny-b41495e.html)Madison Square Garden, New York, NY - Aug 3, 20262026](setlist/rush/2026/madison-square-garden-new-york-ny-534eb789.html)Rogers Stadium, Toronto, ON - Aug 5, 20262026](setlist/guns-n-roses/2026/rogers-stadium-toronto-on-canada-3b4c9400.html)2026](setlist/foo-fighters/2026/passeio-maritimo-de-alges-oeiras-portugal-2b4fc492.html)Busch Stadium, St. Louis, MO - Aug 2, 20262026](setlist/noah-kahan/2026/busch-stadium-st-louis-mo-4b4b9fa2.html)Last updated: 6 Aug 2026, 22:12 UTC## Active UsersModerator](user/ExecutiveChimp)Last updated: 7 Aug 2026, 01:44 UTC## Popular Setlist Artists## Upcoming EventsGrand Sierra Resort, Reno, NV - Aug 7, 20262026](setlist/blue-oyster-cult/2026/grand-sierra-resort-reno-nv-2b4998fe.html)The Mountain Winery, Saratoga, CA - Aug 7, 20262026](setlist/los-lobos/2026/the-mountain-winery-saratoga-ca-1376edf1.html) The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on setlist.fm.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.setlist.fm/setlists/radiohead-bd6bd12.html");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.setlist.fm/setlists/radiohead-bd6bd12.html");
await page.content();
const data = await page.evaluate(`(() => {
const setlists = [];
document.querySelectorAll(".setlistPreview").forEach(el => {
const date = el.querySelector(".dateBlock .month, .dateBlock .day")?.textContent?.trim();
const venue = el.querySelector(".setlistMainLine a:nth-child(2)")?.textContent?.trim();
const city = el.querySelector(".setlistMainLine span")?.textContent?.trim();
const songs = [];
el.querySelectorAll(".songPart a").forEach(s => songs.push(s.textContent?.trim()));
if (venue) setlists.push({ date, venue, city, songs: songs.slice(0, 5) });
});
return JSON.stringify({ total: setlists.length, setlists: setlists.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What setlist.fm costs to scrape.
The capture above cost $0.000246 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Music & Podcasts scrapers.
Spotify Music Scraper
Extract playlist tracks, artist profiles, album metadata, and popularity scores from Spotify open web player.
Apple Music Scraper
Extract album tracklists, artist discographies, playlist contents, and editorial notes from Apple Music catalog.
Deezer Scraper
Extract music catalogs, playlist data, artist bios, and chart rankings from Deezer streaming platform.
Start scraping setlist.fm.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.