Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get a list of tracks from the entire spotify library?

I'm looking for something like:

library.tracks

but instead of getting just the tracks from the user's library, I want tracks from the whole spotify library (or at least all the songs available in their region).

Thanks for your help.

Edit: I'm trying to use the Spotify API to create an application that finds and plays a random song in the Spotify library.

share|improve this question
I really doubt it. Why would they allow you to download their entire database? – Robert Harvey Feb 27 '12 at 22:56
I'm sorry if my question was unclear - I don't want to download their database. I'm trying to create an application that chooses and plays a random song from all of spotify so I wanted access to a list of tracks to play. – Jonathan Hsu Feb 27 '12 at 23:03

1 Answer

up vote 1 down vote accepted

There's no way of getting a list of all the 15+ million tracks in the library. But you could probably create some kind of random feature anyway:

  1. Randomize a character (e.g A-Z) or word (i.e. by using some kind of dictionary).
  2. Do a track/artist/album search in the Spotify library using your character/word and pick a random song from the search results.

Don't know how "random" you want it, but that's one way of doing it anyway.

share|improve this answer
Thanks, I'll try that. – Jonathan Hsu Mar 1 '12 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.