Songkick Scraper
Extract concert listings, festival lineups, artist tour dates, and venue data from Songkick live music tracking platform. Built on spider-browser .
- target
- songkick.com
- success rate
- 99.9%
- latency
- ~4ms
Extract data in minutes.
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.songkick.com/metro-areas/26330-us-sf-bay-area");
await page.content(10000);
const data = await page.evaluate(`(() => {
const events = [];
document.querySelectorAll(".event-listings li, [data-testid='event-listing']").forEach(el => {
const name = el.querySelector("a.event-link, .event-name")?.textContent?.trim();
const date = el.querySelector("time, .date-label")?.getAttribute("datetime") || el.querySelector("time")?.textContent?.trim();
const venue = el.querySelector(".venue-name, .event-venue a")?.textContent?.trim();
const location = el.querySelector(".location, .event-location")?.textContent?.trim();
if (name) events.push({ name, date, venue, location });
});
return JSON.stringify({ total: events.length, events: events.slice(0, 15) });
})()`);
console.log(JSON.parse(data));
await spider.close(); One endpoint for songkick.com.
Structured JSON from songkick.com with a single POST. AI-resolved selectors, cached on the first call.
curl -X POST https://api.spider.cloud/fetch/songkick.com/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"return_format": "json"}' import requests
resp = requests.post(
"https://api.spider.cloud/fetch/songkick.com/",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
json={"return_format": "json"},
)
print(resp.json()) const resp = await fetch("https://api.spider.cloud/fetch/songkick.com/", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data); Fields you can pull.
Event discovery
Extract event details, dates, venues, and ticket prices from songkick.com.
Dynamic calendars
Handle interactive calendars, date pickers, and map-based event search.
Availability tracking
Monitor ticket availability and price changes in real time.
More Events & Tickets scrapers.
Eventbrite Scraper
Extract event listings, ticket prices, venue details, and organizer info from Eventbrite event discovery platform.
Meetup Scraper
Extract group meetups, RSVP counts, venue locations, and organizer profiles from Meetup community event platform.
Ticketmaster Scraper
Extract concert listings, ticket prices, seat maps, and venue details from Ticketmaster event ticketing platform.
Start scraping songkick.com.
Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.