Need help? Check out Spotify Answers for solutions to a wide range of topics. |
I want to help artists support themselves and other artists or groups.
I would like to know if the API cna be used to search all of spotify and pull data about artists so it cna be filtered by things like genre, monthly listens, date of last submission etc. I'd also like to be able to pull the social media contact info if the artist posted that to spotify.
I'm not a developer. But I've been told it's theoretically possible, but considered 'Data mining' and enters ethical areas.
I want to be able to pull lists together of bands similar to mine, with roughly the same it of listeners, so we can build playlists and share each other's music.
Is this possible sing the API?
Thanks you!
Hey @Madwagon, thanks for coming to the Spotify Community Developers board!
Let's see what's possible. You can call the following with the Spotify Web API with regard to artists:
GET | /v1/artists/{id} | Get an Artist | artist |
GET | /v1/artists/{id}/albums | Get an Artist's Albums | albums |
GET | /v1/artists/{id}/top-tracks | Get an Artist's Top Tracks | tracks |
GET | /v1/artists/{id}/related-artists | Get an Artist's Related Artists | artists |
GET | /v1/artists | Get Several Artists | artists |
When using the 'Get an Artist'-endpoint; you'll get an 'artist object' which contains all the information that's on this page. If you're missing something here, I recommend creating a new idea on the Ideas board. That way, Spotify can keep track of all feedback.
Feel free to give me a shout, if you have any questions!
Have a great day and happy coding,
Hubo