Reputation: 49
I am creating a music app using Spotify APIS. I want to list artists from Spotify without using any IDs. if we have any id then we can fetch artist details. link:GET https://api.spotify.com/v1/artists/{id} If there are multiple artists IDS. link: GET https://api.spotify.com/v1/artists Are there any options to get Spotify artist details without using any IDS?
Upvotes: 1
Views: 1666
Reputation: 4576
You can Search for Artists on Spotify using Search for an Item and select the artist type then you just need the name of the artist, you'll then get the basic artist information, along with their Id which you could use in other calls to get information about that Artist from Spotify
https://api.spotify.com/v1/search?q=ArtistName%type=artist
Upvotes: -1