1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-22 14:49:33 +00:00

Created Artist Lookup (markdown)

Qstick 2018-04-01 09:18:07 -04:00
parent 0ebab7066a
commit 24d34ee2cd

32
Artist-Lookup.md Normal file

@ -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
[
]
```