[GH-ISSUE #26] API stopped working #96

Closed
opened 2026-03-07 19:29:40 +03:00 by kerem · 31 comments
Owner

Originally created by @yagdev on GitHub (Sep 27, 2023).
Original GitHub issue: https://github.com/akashrchandran/spotify-lyrics-api/issues/26

As of 28/9 the API no longer works.

Originally created by @yagdev on GitHub (Sep 27, 2023). Original GitHub issue: https://github.com/akashrchandran/spotify-lyrics-api/issues/26 As of 28/9 the API no longer works.
kerem closed this issue 2026-03-07 19:29:40 +03:00
Author
Owner

@Springhunk commented on GitHub (Sep 28, 2023):

I thought it was my network that's causing the error, the API no longer works.

<!-- gh-comment-id:1738529902 --> @Springhunk commented on GitHub (Sep 28, 2023): I thought it was my network that's causing the error, the API no longer works.
Author
Owner

@yagdev commented on GitHub (Sep 28, 2023):

I thought it was my network that's causing the error, the API no longer works.

It's funny because it was the day after I finished my project. Regardless, I am trying to understand how the updated spotify api works, but so far I discovered that lyric-related responses from requests made by the Spotify Web Client remain the same format as the ones on the API. I now plan on discovering how to make requests to this API directly.

<!-- gh-comment-id:1739003408 --> @yagdev commented on GitHub (Sep 28, 2023): > I thought it was my network that's causing the error, the API no longer works. It's funny because it was the day after I finished my project. Regardless, I am trying to understand how the updated spotify api works, but so far I discovered that lyric-related responses from requests made by the Spotify Web Client remain the same format as the ones on the API. I now plan on discovering how to make requests to this API directly.
Author
Owner

@yagdev commented on GitHub (Sep 28, 2023):

Okay so after further research, to query https://spclient.wg.spotify.com/color-lyrics/v2/track/(trackid)/, the required headers and values are:
'accept'='application/json'
'app-platform'='Win32'
'authorization'='Bearer (token)'

Where it says (token), replace it with the value https://open.spotify.com/get_access_token?reason=transport&productType=web_player gives you for accessToken.

<!-- gh-comment-id:1739116350 --> @yagdev commented on GitHub (Sep 28, 2023): Okay so after further research, to query https://spclient.wg.spotify.com/color-lyrics/v2/track/(trackid)/, the required headers and values are: 'accept'='application/json' 'app-platform'='Win32' 'authorization'='Bearer (token)' Where it says (token), replace it with the value https://open.spotify.com/get_access_token?reason=transport&productType=web_player gives you for accessToken.
Author
Owner

@Lambada10 commented on GitHub (Sep 29, 2023):

@yagdev any way to make it return .lrc format?

<!-- gh-comment-id:1740516025 --> @Lambada10 commented on GitHub (Sep 29, 2023): @yagdev any way to make it return .lrc format?
Author
Owner

@yagdev commented on GitHub (Sep 30, 2023):

@yagdev any way to make it return .lrc format?

I haven't experimented with that in particular, but I assume you can by changing a header.
You can do further research into this by analyzing the Spotify app's HTTP requests made to https://spclient.wg.spotify.com/color-lyrics/v2/track/ with fiddler everywhere (to achieve this play a song with lyrics and make sure to press on the lyrics button on the Spotify app.

<!-- gh-comment-id:1741635293 --> @yagdev commented on GitHub (Sep 30, 2023): > @yagdev any way to make it return .lrc format? I haven't experimented with that in particular, but I assume you can by changing a header. You can do further research into this by analyzing the Spotify app's HTTP requests made to https://spclient.wg.spotify.com/color-lyrics/v2/track/ with fiddler everywhere (to achieve this play a song with lyrics and make sure to press on the lyrics button on the Spotify app.
Author
Owner

@maxrave-dev commented on GitHub (Sep 30, 2023):

@yagdev any way to make it return .lrc format?

I haven't experimented with that in particular, but I assume you can by changing a header. You can do further research into this by analyzing the Spotify app's HTTP requests made to https://spclient.wg.spotify.com/color-lyrics/v2/track/ with fiddler everywhere (to achieve this play a song with lyrics and make sure to press on the lyrics button on the Spotify app.

I use Web API to get Authentication AccessToken but when I get https://spclient.wg.spotify.com/color-lyrics/v2/track/ request, it always return 403 error. How to fix?

<!-- gh-comment-id:1741783020 --> @maxrave-dev commented on GitHub (Sep 30, 2023): > > @yagdev any way to make it return .lrc format? > > I haven't experimented with that in particular, but I assume you can by changing a header. You can do further research into this by analyzing the Spotify app's HTTP requests made to https://spclient.wg.spotify.com/color-lyrics/v2/track/ with fiddler everywhere (to achieve this play a song with lyrics and make sure to press on the lyrics button on the Spotify app. I use Web API to get Authentication AccessToken but when I get https://spclient.wg.spotify.com/color-lyrics/v2/track/ request, it always return 403 error. How to fix?
Author
Owner

@akashrchandran commented on GitHub (Oct 1, 2023):

Hey, my bad for the delayed response—I've been caught up in real life stuff. I've just kicked the dynos back into action, updating the account in the process. Quick heads up, though—Spotify rolled out a policy tweak. Free accounts don't get full access to all lyrics anymore; you'll need premium for that. Check out the info below for more details! Some song lyrics are still accessible for free.

image

https://www.theverge.com/2023/9/5/23860124/spotify-lyrics-premium-only-feature
https://techcrunch.com/2023/09/05/spotify-lyrics-free-tier-premium-test/


Hey, if anyone's got a premium account they're willing to share for the API, shoot me a message!

<!-- gh-comment-id:1742167876 --> @akashrchandran commented on GitHub (Oct 1, 2023): Hey, my bad for the delayed response—I've been caught up in real life stuff. I've just kicked the dynos back into action, updating the account in the process. Quick heads up, though—Spotify rolled out a policy tweak. Free accounts don't get full access to all lyrics anymore; you'll need premium for that. Check out the info below for more details! Some song lyrics are still accessible for free. ![image](https://github.com/akashrchandran/spotify-lyrics-api/assets/78685510/c4525a58-5df6-46c5-a8dc-e1d96fbfb861) https://www.theverge.com/2023/9/5/23860124/spotify-lyrics-premium-only-feature https://techcrunch.com/2023/09/05/spotify-lyrics-free-tier-premium-test/ --- **Hey, if anyone's got a premium account they're willing to share for the API, shoot me a message!**
Author
Owner

@iammohammedaamir commented on GitHub (Oct 2, 2023):

It is possible to add itunes link support?

<!-- gh-comment-id:1742433465 --> @iammohammedaamir commented on GitHub (Oct 2, 2023): It is possible to add itunes link support?
Author
Owner

@akashrchandran commented on GitHub (Oct 2, 2023):

It is possible to add itunes link support?

I have commented on the issue you had opened. https://github.com/akashrchandran/syrics-web/issues/12#issuecomment-1742601882

<!-- gh-comment-id:1742604581 --> @akashrchandran commented on GitHub (Oct 2, 2023): > It is possible to add itunes link support? I have commented on the issue you had opened. https://github.com/akashrchandran/syrics-web/issues/12#issuecomment-1742601882
Author
Owner

@yagdev commented on GitHub (Oct 2, 2023):

Hey, my bad for the delayed response—I've been caught up in real life stuff. I've just kicked the dynos back into action, updating the account in the process. Quick heads up, though—Spotify rolled out a policy tweak. Free accounts don't get full access to all lyrics anymore; you'll need premium for that. Check out the info below for more details! Some song lyrics are still accessible for free.

image

https://www.theverge.com/2023/9/5/23860124/spotify-lyrics-premium-only-feature https://techcrunch.com/2023/09/05/spotify-lyrics-free-tier-premium-test/

Hey, if anyone's got a premium account they're willing to share for the API, shoot me a message!

I wonder if they'll implement the check on the API end or just the client end...

<!-- gh-comment-id:1742941968 --> @yagdev commented on GitHub (Oct 2, 2023): > Hey, my bad for the delayed response—I've been caught up in real life stuff. I've just kicked the dynos back into action, updating the account in the process. Quick heads up, though—Spotify rolled out a policy tweak. Free accounts don't get full access to all lyrics anymore; you'll need premium for that. Check out the info below for more details! Some song lyrics are still accessible for free. > > ![image](https://user-images.githubusercontent.com/78685510/271846924-c4525a58-5df6-46c5-a8dc-e1d96fbfb861.png) > > https://www.theverge.com/2023/9/5/23860124/spotify-lyrics-premium-only-feature https://techcrunch.com/2023/09/05/spotify-lyrics-free-tier-premium-test/ > > **Hey, if anyone's got a premium account they're willing to share for the API, shoot me a message!** I wonder if they'll implement the check on the API end or just the client end...
Author
Owner

@aviwad commented on GitHub (Oct 4, 2023):

I bet they'll check on the API end. Probably check if the account associated with the token is subscribed to Premium or not. For now the API has started working again though....

<!-- gh-comment-id:1746077397 --> @aviwad commented on GitHub (Oct 4, 2023): I bet they'll check on the API end. Probably check if the account associated with the token is subscribed to Premium or not. For now the API has started working again though....
Author
Owner

@yagdev commented on GitHub (Oct 4, 2023):

I bet they'll check on the API end. Probably check if the account associated with the token is subscribed to Premium or not. For now the API has started working again though....

If you don't mind could you tell me what happened to your API to make it stop working?

<!-- gh-comment-id:1746125286 --> @yagdev commented on GitHub (Oct 4, 2023): > I bet they'll check on the API end. Probably check if the account associated with the token is subscribed to Premium or not. For now the API has started working again though.... If you don't mind could you tell me what happened to your API to make it stop working?
Author
Owner

@aviwad commented on GitHub (Oct 4, 2023):

my API? i'm using this repo's api in my project (more specifically, @akashrchandran's heroku instance). what do you mean my api?

<!-- gh-comment-id:1747740096 --> @aviwad commented on GitHub (Oct 4, 2023): my API? i'm using this repo's api in my project (more specifically, @akashrchandran's heroku instance). what do you mean my api?
Author
Owner

@yagdev commented on GitHub (Oct 5, 2023):

my API? i'm using this repo's api in my project (more specifically, @akashrchandran's heroku instance). what do you mean my api?

Oh sorry, I mistook you for the repo owner

<!-- gh-comment-id:1747923910 --> @yagdev commented on GitHub (Oct 5, 2023): > my API? i'm using this repo's api in my project (more specifically, @akashrchandran's heroku instance). what do you mean my api? Oh sorry, I mistook you for the repo owner
Author
Owner

@akashrchandran commented on GitHub (Oct 5, 2023):

If you don't mind could you tell me what happened to your API to make it stop working?

The API stopped working because the old token expired. I didn't notice it had expired because I was focused on my exams and wasn't online that much. But now I have replaced it with a new one.

I am still using a token from my free account, so API has limited Free tier lyrics. If you have a premium account then you can either host the API yourself or share the token with me. I will add it to the public API.

<!-- gh-comment-id:1747933886 --> @akashrchandran commented on GitHub (Oct 5, 2023): > If you don't mind could you tell me what happened to your API to make it stop working? The API stopped working because the old token expired. I didn't notice it had expired because I was focused on my exams and wasn't online that much. But now I have replaced it with a new one. I am still using a token from my free account, so API has limited Free tier lyrics. If you have a premium account then you can either host the API yourself or share the token with me. I will add it to the public API.
Author
Owner

@yagdev commented on GitHub (Oct 5, 2023):

If you don't mind could you tell me what happened to your API to make it stop working?

The API stopped working because the old token expired. I didn't notice it had expired because I was focused on my exams and wasn't online that much. But now I have replaced it with a new one.

I am still using a token from my free account, so API has limited Free tier lyrics. If you have a premium account then you can either host the API yourself or share the token with me. I will add it to the public API.

Thanks for the reply!

I unfortunately use Spotify free though, so I can't share a premium token, but if I ever get access to one I'll make sure to share it with you so you can add it to the API. I'd also like to report a strange finding I've made on the Spotify API (I am pulling directly from Spotify now), which is that some weeks ago a lot of songs stopped having their lyrics available, but for some reason sometimes (like twice a day) I'm able to get them through the API.

<!-- gh-comment-id:1748025328 --> @yagdev commented on GitHub (Oct 5, 2023): > > If you don't mind could you tell me what happened to your API to make it stop working? > > The API stopped working because the old token expired. I didn't notice it had expired because I was focused on my exams and wasn't online that much. But now I have replaced it with a new one. > > I am still using a token from my free account, so API has limited Free tier lyrics. If you have a premium account then you can either host the API yourself or share the token with me. I will add it to the public API. Thanks for the reply! I unfortunately use Spotify free though, so I can't share a premium token, but if I ever get access to one I'll make sure to share it with you so you can add it to the API. I'd also like to report a strange finding I've made on the Spotify API (I am pulling directly from Spotify now), which is that some weeks ago a lot of songs stopped having their lyrics available, but for some reason sometimes (like twice a day) I'm able to get them through the API.
Author
Owner

@Paxsenix0 commented on GitHub (Oct 7, 2023):

Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag)

I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php.
I have it done, you can check my repo :)

https://github.com/Paxsenix0/MusixMatch-Lyrics

And big thanks to @akashrchandran for making spotify lyrics api! :)

<!-- gh-comment-id:1751576827 --> @Paxsenix0 commented on GitHub (Oct 7, 2023): Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag) I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php. I have it done, you can check my repo :) https://github.com/Paxsenix0/MusixMatch-Lyrics And big thanks to @akashrchandran for making spotify lyrics api! :)
Author
Owner

@maxrave-dev commented on GitHub (Oct 7, 2023):

Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag)

I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php.
I have it done, you can check my repo :)

https://github.com/Paxsenix0/MusixMatch-Lyrics

And big thanks to @akashrchandran for making spotify lyrics api! :)

How do you research the API?

<!-- gh-comment-id:1751588208 --> @maxrave-dev commented on GitHub (Oct 7, 2023): > Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag) > > I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php. > I have it done, you can check my repo :) > > https://github.com/Paxsenix0/MusixMatch-Lyrics > > And big thanks to @akashrchandran for making spotify lyrics api! :) > > How do you research the API?
Author
Owner

@Paxsenix0 commented on GitHub (Oct 7, 2023):

How do you research the API?

I'm doing research on Github, and found this
https://github.com/fashni/MxLRC
https://github.com/0x7d4/syncedlyrics

So i'm trying to make it on php :)

<!-- gh-comment-id:1751592140 --> @Paxsenix0 commented on GitHub (Oct 7, 2023): > > How do you research the API? I'm doing research on Github, and found this https://github.com/fashni/MxLRC https://github.com/0x7d4/syncedlyrics So i'm trying to make it on php :)
Author
Owner

@yagdev commented on GitHub (Oct 7, 2023):

Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag)

I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php. I have it done, you can check my repo :)

https://github.com/Paxsenix0/MusixMatch-Lyrics

And big thanks to @akashrchandran for making spotify lyrics api! :)

Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think)

<!-- gh-comment-id:1751594563 --> @yagdev commented on GitHub (Oct 7, 2023): > Hello! @yagdev @akashrchandran @maxrave-dev (sorry for tag) > > I'm beginner and doing some searching and i have found MusixMatch API for getting synced lyrics, and i'm trying making it in php. I have it done, you can check my repo :) > > https://github.com/Paxsenix0/MusixMatch-Lyrics > > And big thanks to @akashrchandran for making spotify lyrics api! :) Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think)
Author
Owner

@Paxsenix0 commented on GitHub (Oct 7, 2023):

Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think)

If I'm not mistaken, to get the lyrics / search track, require parameter usertoken

And for doing this i need to doing request to this url

https://apic-desktop.musixmatch.com/ws/1.1/token.get?app_id=web-desktop-app-v1.0

and i will get response like this

{
  "message": {
    "header": {
      "status_code": 200,
      "execute_time": 0.757,
      "pid": 35,
      "surrogate_key_list": []
    },
    "body": {
      "user_token": "231007a34e149af2971c68af864dca419f440b4ada543546fceb6e",
     ....
      "app_config": {
         ....
        "missions": {
          "enabled": true,
          "community": [
            "all",
            "contribute_section"
          ]
        }
.....
     }
}

And If i'm not mistaken, this token will expire after 10 minutes.

Correct me if i wrong, because i still beginner:)

<!-- gh-comment-id:1751597530 --> @Paxsenix0 commented on GitHub (Oct 7, 2023): > > Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think) If I'm not mistaken, to get the lyrics / search track, require parameter `usertoken` And for doing this i need to doing request to this url ``` https://apic-desktop.musixmatch.com/ws/1.1/token.get?app_id=web-desktop-app-v1.0 ``` and i will get response like this ```Json { "message": { "header": { "status_code": 200, "execute_time": 0.757, "pid": 35, "surrogate_key_list": [] }, "body": { "user_token": "231007a34e149af2971c68af864dca419f440b4ada543546fceb6e", .... "app_config": { .... "missions": { "enabled": true, "community": [ "all", "contribute_section" ] } ..... } } ``` And If i'm not mistaken, this token will expire after 10 minutes. Correct me if i wrong, because i still beginner:)
Author
Owner

@maxrave-dev commented on GitHub (Oct 7, 2023):

Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think)

If I'm not mistaken, to get the lyrics / search track, require parameter usertoken

And for doing this i need to doing request to this url

https://apic-desktop.musixmatch.com/ws/1.1/token.get?app_id=web-desktop-app-v1.0

and i will get response like this

{
  "message": {
    "header": {
      "status_code": 200,
      "execute_time": 0.757,
      "pid": 35,
      "surrogate_key_list": []
    },
    "body": {
      "user_token": "231007a34e149af2971c68af864dca419f440b4ada543546fceb6e",
     ....
      "app_config": {
         ....
        "missions": {
          "enabled": true,
          "community": [
            "all",
            "contribute_section"
          ]
        }
.....
     }
}

And If i'm not mistaken, this token will expire after 10 minutes.

Correct me if i wrong, because i still beginner:)

Thanks for your research. It's working. Cheers 🥂

<!-- gh-comment-id:1751654036 --> @maxrave-dev commented on GitHub (Oct 7, 2023): > > Hey! I definitely appreciate your efforts, but something has me confused. If I recall correctly, didn't MusixMatch have lots of limits for free API usage and if so, how did you bypass those? (Synced lyrics were not a free feature I think) > > If I'm not mistaken, to get the lyrics / search track, require parameter `usertoken` > > And for doing this i need to doing request to this url > > ``` > https://apic-desktop.musixmatch.com/ws/1.1/token.get?app_id=web-desktop-app-v1.0 > ``` > > and i will get response like this > > ```json > { > "message": { > "header": { > "status_code": 200, > "execute_time": 0.757, > "pid": 35, > "surrogate_key_list": [] > }, > "body": { > "user_token": "231007a34e149af2971c68af864dca419f440b4ada543546fceb6e", > .... > "app_config": { > .... > "missions": { > "enabled": true, > "community": [ > "all", > "contribute_section" > ] > } > ..... > } > } > ``` > > And If i'm not mistaken, this token will expire after 10 minutes. > > Correct me if i wrong, because i still beginner:) Thanks for your research. It's working. Cheers 🥂
Author
Owner

@Paxsenix0 commented on GitHub (Oct 7, 2023):

Thanks for your research. It's working. Cheers 🥂

You're welcome! 🥂

<!-- gh-comment-id:1751655528 --> @Paxsenix0 commented on GitHub (Oct 7, 2023): > > Thanks for your research. It's working. Cheers 🥂 You're welcome! 🥂
Author
Owner

@maja0270558 commented on GitHub (Oct 11, 2023):

Hey @Paxsenix0 good job. but I saw MusixMatch API free user can only access to 30% of lyrics per song is that ture?

<!-- gh-comment-id:1756846582 --> @maja0270558 commented on GitHub (Oct 11, 2023): Hey @Paxsenix0 good job. but I saw MusixMatch API free user can only access to 30% of lyrics per song is that ture?
Author
Owner

@maxrave-dev commented on GitHub (Oct 11, 2023):

Thanks for your research. It's working. Cheers 🥂

You're welcome! 🥂

I have tried to find translations API, but I found nothing. Did you know any references @Paxsenix0 ?

<!-- gh-comment-id:1756929065 --> @maxrave-dev commented on GitHub (Oct 11, 2023): > > Thanks for your research. It's working. Cheers 🥂 > > You're welcome! 🥂 I have tried to find translations API, but I found nothing. Did you know any references @Paxsenix0 ?
Author
Owner

@Paxsenix0 commented on GitHub (Oct 11, 2023):

I have tried to find translations API, but I found nothing. Did you know any references @Paxsenix0 ?

Sorry, but i didn't get any references, i'm also tried to find, but the translate result is weird. :/

but if i found one, I'll let you know

<!-- gh-comment-id:1756951881 --> @Paxsenix0 commented on GitHub (Oct 11, 2023): > > I have tried to find translations API, but I found nothing. Did you know any references @Paxsenix0 ? Sorry, but i didn't get any references, i'm also tried to find, but the translate result is weird. :/ but if i found one, I'll let you know
Author
Owner

@Paxsenix0 commented on GitHub (Oct 11, 2023):

Hey @Paxsenix0 good job. but I saw MusixMatch API free user can only access to 30% of lyrics per song is that ture?

Hmm, i can't say is that true or not, but so far I got the full lyrics and it was synched.

<!-- gh-comment-id:1757010761 --> @Paxsenix0 commented on GitHub (Oct 11, 2023): > Hey @Paxsenix0 good job. but I saw MusixMatch API free user can only access to 30% of lyrics per song is that ture? Hmm, i can't say is that true or not, but so far I got the full lyrics and it was synched.
Author
Owner

@PeterStark000 commented on GitHub (Oct 17, 2023):

Apparently, the API has stopped providing song lyrics :(, but I believe there's a way to scrape lyrics for free using a token from a free account. I use a modified version of Spotify called Spicetify, which gives me extensions and lets me see the lyrics of songs.
image

<!-- gh-comment-id:1767345785 --> @PeterStark000 commented on GitHub (Oct 17, 2023): Apparently, the API has stopped providing song lyrics :(, but I believe there's a way to scrape lyrics for free using a token from a free account. I use a modified version of Spotify called Spicetify, which gives me extensions and lets me see the lyrics of songs. ![image](https://github.com/akashrchandran/spotify-lyrics-api/assets/40671520/0ea0e0d9-dbe2-4482-9e64-1153cf6b04eb)
Author
Owner

@alecvl08 commented on GitHub (Oct 19, 2023):

@akashrchandran The API is up now but I get "lyrics for this track is not available on spotify!" for about 98% of responses starting sometime in the last week. Is this related to the Spotify account being free and not premium? Would you be willing to buy a premium account if people contributed money for it? I have invested significantly in a project that relies heavily on this API, so it would be unfortunate for that to go to waste. Thanks

<!-- gh-comment-id:1771557127 --> @alecvl08 commented on GitHub (Oct 19, 2023): @akashrchandran The API is up now but I get "lyrics for this track is not available on spotify!" for about 98% of responses starting sometime in the last week. Is this related to the Spotify account being free and not premium? Would you be willing to buy a premium account if people contributed money for it? I have invested significantly in a project that relies heavily on this API, so it would be unfortunate for that to go to waste. Thanks
Author
Owner

@yagdev commented on GitHub (Oct 25, 2023):

@akashrchandran The API is up now but I get "lyrics for this track is not available on spotify!" for about 98% of responses starting sometime in the last week. Is this related to the Spotify account being free and not premium? Would you be willing to buy a premium account if people contributed money for it? I have invested significantly in a project that relies heavily on this API, so it would be unfortunate for that to go to waste. Thanks

I have noticed that Spotify in general has lost a lot of song lyrics. This is not something related to the way I've programmed my API in my usage, so I assume this is the same with this project, but it mirrors the lyrics availability of the normal Spotify client.

<!-- gh-comment-id:1779848618 --> @yagdev commented on GitHub (Oct 25, 2023): > @akashrchandran The API is up now but I get "lyrics for this track is not available on spotify!" for about 98% of responses starting sometime in the last week. Is this related to the Spotify account being free and not premium? Would you be willing to buy a premium account if people contributed money for it? I have invested significantly in a project that relies heavily on this API, so it would be unfortunate for that to go to waste. Thanks I have noticed that Spotify in general has lost a lot of song lyrics. This is not something related to the way I've programmed my API in my usage, so I assume this is the same with this project, but it mirrors the lyrics availability of the normal Spotify client.
Author
Owner

@akashrchandran commented on GitHub (Oct 26, 2023):

Please check the issue #29

<!-- gh-comment-id:1780502901 --> @akashrchandran commented on GitHub (Oct 26, 2023): Please check the issue #29
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-lyrics-api#96
No description provided.