mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-22 14:49:33 +00:00
Created Artist Lookup (markdown)
parent
0ebab7066a
commit
24d34ee2cd
1 changed files with 32 additions and 0 deletions
32
Artist-Lookup.md
Normal file
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
|
||||||
|
[
|
||||||
|
]
|
||||||
|
```
|
Loading…
Reference in a new issue