# Music Research Lyrics Dataset Extractor

**Use case:** 

Combine Genius search queries and song URLs to build a bounded lyrics dataset for music, NLP, or trend research.

## Input

```json
{
  "searchQueries": [
    "Grammy song of the year",
    "viral TikTok songs 2024"
  ],
  "artistUrls": [],
  "songUrls": [
    "https://genius.com/Queen-bohemian-rhapsody-lyrics"
  ],
  "maxSongs": 8,
  "includeLyrics": true
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Art",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artistName": {
    "label": "Artist",
    "format": "text"
  },
  "albumName": {
    "label": "Album",
    "format": "text"
  },
  "releaseDate": {
    "label": "Release Date",
    "format": "date"
  },
  "pageviews": {
    "label": "Pageviews",
    "format": "number"
  },
  "url": {
    "label": "Genius URL",
    "format": "link"
  },
  "spotifyUrl": {
    "label": "Spotify",
    "format": "link"
  },
  "youtubeUrl": {
    "label": "YouTube",
    "format": "link"
  },
  "lyrics": {
    "label": "Lyrics",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Genius Scraper](https://apify.com/automation-lab/genius-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/genius-scraper) to learn more, explore other use cases, and run it yourself.