diff --git a/Artist-Lookup.md b/Artist-Lookup.md new file mode 100644 index 0000000..d00986e --- /dev/null +++ b/Artist-Lookup.md @@ -0,0 +1,32 @@ +**Endpoint: "/Artist/lookup"** + +## GET ## + +##### Summary ##### +Searches for new artists on Lidarr API + +##### Parameters ###### + +Required: +`term` = Either the Artist's Name, using `%20` to signify spaces, as in `term=Linkin%20Park` + +Or you can use `lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419` if you know the program's MusicBrainz ID Number - as in `term=Lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419` + +#### Full Breakdown: #### + +``` +curl --request GET "localhost:8989/api/Artist/lookup?term=Linkin%20Park&apikey=YOURAPIKEY" +``` + +-- or -- + +``` +curl --request GET "localhost:8989/api/Artist/lookup?term=Lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419&apikey=YOURAPIKEY" +``` + +##### Returns Array ###### + +```JSON +[ +] +``` \ No newline at end of file