# Song Lyrics and Metadata Scraper

**Use case:** 

Extract Genius song lyrics, titles, artists, release dates, pageviews, and music metadata for research datasets.

## Input

```json
{
  "searchQueries": [
    "Bohemian Rhapsody Queen",
    "Anti-Hero Taylor Swift"
  ],
  "artistUrls": [],
  "songUrls": [],
  "maxSongs": 5,
  "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.