1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 14:17:19 +02:00

Updated API:Movie (markdown)

euphoria360 2018-06-25 18:19:12 +04:30
parent f3fcd0b21f
commit c3bb36aeb8

@ -277,3 +277,12 @@ Optional:
````JSON
{}
````
## Examples
### Getting a downloaded movie info with Curl on Linux
Example of instructing Radarr to give us the JSON formatted info of a movie available in local database.
Note: Your movie ID is not TMDB or IMDB id. It will be generated and assigned to your movie by your radarr installation. In post processing scripts you can get it via `$radarr_movie_id` environment variable or by running the below command without `/{id}`. In this example my movie {id} is `166`
```
curl -X GET "http://RADARRIP:RADARRPORT/api/movie/166?apikey=RADARRAPIKEY"
```