From 24d34ee2cdbacd805f3c329c88d4cbcbd27d4dea Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 1 Apr 2018 09:18:07 -0400 Subject: [PATCH] Created Artist Lookup (markdown) --- Artist-Lookup.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Artist-Lookup.md 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