Genius Scraper
Spider read genius.com in 229 ms without a browser and returned 248 lines of clean markdown, including sections like "Charts", "Videos" and "Genius Original Series".
## Charts1 ### petal Lyrics #### Ariana Grande 544.5K2 ### Animal Lyrics #### KATSEYE 681.9K3 ### Creep Lyrics #### Radiohead 13.2M4 ### Lose Yourself Lyrics #### Eminem 20.8M5 ### Total Eclipse of the Heart Lyrics #### Bonnie Tyler 5.8M6 ### Baby Lyrics #### Justin Bieber 7.9M7 ### Smooth Operator Lyrics #### Gvtta 8.3K8 ### Pink Blush Lyrics #### dolly babe 39.9K9 ### the cure Lyrics #### Olivia Rodrigo 2M10 ### ДИНАСТИЯ (DYNASTY) Lyrics #### VILLIAN & madk1d 95.8K## Videos### Genius Original Series## OsamaSon Breaks Down The Meaning of “off that!” Learn about the song’s lyrics on the latest episode of ‘Verified.’ by ButterflyHoneyAug. 5, 2026## Latest### Most Recent Newsnews ### DIIV Announces New Album ‘ZIRP!’ Produced by A. G. Cook, Shares Lead Single “The Fountain” by Ken PartridgeAug. 6, 2026video ### The Womack Sisters Perform “If I Let You” Live by ButterflyHoneyAug. 6, 2026feature ### DAYOUNG Discusses Getting “FLIRTY” With Jay Park On New Collaborative Single by Angel PolitoAug. 6, 2026video ### OsamaSon Breaks Down The Meaning of “off that!” by ButterflyHoneyAug. 5, 2026news ### JAŸ-Z Jumps On Beyoncé’s New “MORNING DEW (DONK) REMIX” by Ken PartridgeAug. 5, 2026news ### More Evidence Suggests “RUBBERZ” By Fenix Flexin Was Generated By AI by Ken PartridgeAug. 4, 2026feature ### ILLIT Are Iconic On Purpose by Natalia KabengeAug. 4, 2026feature ### DINO Is Entering His Picheolin Era by Sofia SaysonAug. 3, 2026feature ### Genius Community Playlist July 2026 by streetlightsJul. 31, 2026video ### OMAH LAY Breaks Down The Meaning of “I AM” by ButterflyHoneyJul. 31, 2026news ### CORTIS Teams Up With Juicy J For New Song “MOTION” by Ken PartridgeJul. 31, 2026news ### Cardi B Laughs At The Competition On New Song “AH HA” by Ken PartridgeJul. 31, 2026## Community### Genius’s community of contributors powers the world’s biggest collection of song lyrics and musical knowledge. 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 genius.com.
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://genius.com/charts");
// 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!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://genius.com/charts");
await page.content(10000);
const data = await page.evaluate(`(() => {
const songs = [];
document.querySelectorAll(".chart_row").forEach(el => {
const title = el.querySelector(".chart_row-content-title")?.textContent?.trim();
const artist = el.querySelector(".chart_row-content-title .chart_row-content-title-artist")?.textContent?.trim();
const rank = el.querySelector(".chart_row-number")?.textContent?.trim();
if (title) songs.push({ rank, title, artist });
});
return JSON.stringify({ total: songs.length, songs: songs.slice(0, 15) });
})()`);
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 genius.com costs to scrape.
The capture above cost $0.000476 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 genius.com.
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.