akashrchandran / spotify-lyrics-api

A Rest API for fetching lyrics from Spotify which is powered by Musixmatch. Commandline version is available at akashrchandran/syrics.
http://github.akashrchandran.in/spotify-lyrics-api/
GNU General Public License v3.0
369 stars 29 forks source link

Api Giudlines #19

Closed Drag-3 closed 1 year ago

Drag-3 commented 1 year ago

I want to use your API for a project. I just want to know, how many requests can I make at once, and how fast I can make requests. I do not want to accidentally DOS your server while testing my project.

akashrchandran commented 1 year ago

@Drag-3 thank you for asking. As you may have noticed it is hosted on Heroku and I am on the Eco tier (just google it). There is no rate limiting or anything from my side but there are some limitations on Heroku .

And Eco tier only comes with 512 MB of RAM which is more than enough for this app, but higher traffic may cause it to crash. A better way would be hosting this API yourself and scale depending on your usage needs. It's fairly easy to deploy and if you need help make sure to let me know.

I see most of your projects are in python, you may have a look at Syrics. It has modular option so you can make requests using it and get raw lyrics.

Drag-3 commented 1 year ago

@akashrchandran Thank you for the quick response. The Syrics module does fulfill all of my needs as of now so I'll be being that.