Musixmatch Scraper

ENDPOINTS
GET/tracks/writers

Track Writers

Get the registered songwriters of a song.

QUERY PARAMS

Musixmatch track ID, Artist/Track name, any musixmatch.com lyrics URL, ISRC, or Spotify track ID/URL.

Examples:

  • Name: Taylor-Swift/Anti-Hero
  • URL: https://www.musixmatch.com/lyrics/Taylor-Swift/Anti-Hero
  • ID: 248463510
  • ISRC: GBAYE0000267
  • Spotify: https://open.spotify.com/track/3AJwUDP919kvQ9QcozQPxg
{
  "track": {
    "id": 248463510,
    "common_id": 153776734,
    "name": "Anti-Hero",
    "link": "https://www.musixmatch.com/lyrics/Taylor-Swift/Anti-Hero",
    "vanity_id": "Taylor-Swift/Anti-Hero",
    "artist": {
      "id": 259675,
      "name": "Taylor Swift",
      "link": "https://www.musixmatch.com/artist/Taylor-Swift",
      "vanity_id": "Taylor-Swift"
    },
    "album": {
      "id": 54683517,
      "name": "Midnights",
      "link": "https://www.musixmatch.com/album/Taylor-Swift/Midnights",
      "vanity_id": "Taylor-Swift/Midnights",
      "cover_images": {
        "size_100": "https://s.mxmcdn.net/images-storage/albums2/7/3/3/4/0/8/65804337.jpg",
        "size_350": "https://s.mxmcdn.net/images-storage/albums2/7/3/3/4/0/8/65804337_350_350.jpg",
        "size_500": "https://s.mxmcdn.net/images-storage/albums2/7/3/3/4/0/8/65804337_500_500.jpg",
        "size_800": "https://s.mxmcdn.net/images-storage/albums2/7/3/3/4/0/8/65804337_800_800.jpg"
      }
    }
  },
  "count": 2,
  "writers": [
    {
      "id": 2405,
      "name": "Taylor Swift",
      "role": null
    },
    {
      "id": 231604,
      "name": "Jack Michael Antonoff",
      "role": null
    }
  ]
}