The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Paul Datasets
  2. ๐ŸŽผ Lyrics and Artists
Public

0
24
0
24
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • GraphQL API Playground
    API Playground
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

  1. ๐ŸŽผ Lyrics and Artists

This is a comprehensive database with songs, lyrics, and music artists of the world. For each song you will find the song name, complete lyric, song time, and a relationship to the artist.

  • Songs
  • REST
  • API
  • Singers
  • GraphQL
  • Artists
  • Database
  • Datasets
  • Music
  • List

Get StartedFetchย Data
ClassClassesDescription
ClassLyric
Dataset with roughly songs, lyrics, song time, and artists.
ClassArtist
Dataset with music artists and a relation to their songs.
NotesNotes

Dataset of all World Songs, Lyrics, and Artists

This is a very detailed database with data of songs, lyrics, and music artists. The database has 2 datasets as follows:

  • Lyrics - A list with more than 3 million songs
  • Artists - A list with more than 190 thousand artists

Query examples you get can get answers using this database

Query 1

Get All Lyrics

query allLyrics {
      lyrics (skip: 0, limit: 1) {
        results {
          ACL
          artist {
            id
          }
          createdAt
          id
          lyric
          songName
          songTime
          updatedAt
        }
      }
    }

Results

{
  "data": {
    "lyrics": {
      "results": [
        {
          "ACL": null,
          "artist": {
            "id": "Acg80DGZuP"
          },
          "createdAt": "2020-01-30T13:55:47.295Z",
          "id": "6HldGAQSyR",
          "lyric": "They say you can't always get what you want\nAnd they try to say you get what you need\nWell, that sounds nice to me\nBut it ain't nothing but a dice roll\nI say you get what you get\nIt don't matter where your sympathies lie\nIf you ain't got a glimmer in your eye\nYou might end up knighted minister of cool\nMight end up floating dead in a pool\n\nMeet me at the station\nMeet me 'bout half past nine\nAs per our conversation\nWe'll be closer to fine\nIf we hedge our bets\nHold tight, let's get what we want now, baby\n\nWell, it's a long walk to freedom\nAnd then a long way home\nThere ain't no one you can call up, crying on the phone\nThere ain't no broken heart like your own\nWell, I say, forget him, forget her\nThere ain't nothing lasts forever\nDon't marry anyone that don't like The Beatles\nDon't marry anyone, it'll work out even better",
          "songName": "Station (Meet Me at The)",
          "songTime": "ย ",
          "updatedAt": "2020-01-30T13:55:47.295Z"
        }
      ]
    }
  }
}

Query 2

Count Lyrics

query countLyrics {
      lyrics {
        count
      }
    }

Results

{
  "data": {
    "lyrics": {
      "count": 3809669
    }
  }
}

Datase Artists

The Artist dataset has the following information:

  • name (String)
  • songs (Relation to the Lyric table)

You can retrieve all song lyrics by an Artist.

Dataset Lyrics

The Lyric table has the following information:

  • songName (String)
  • lyric (String)
  • songTime (String)
  • artist (Relation to the Artist table)