Movies REST API
REST API with movie database
Public Endpoint API List
Method
Description
GET
Movie List
https://api.ewelinaziobro.pl/movies
Returns list of all movies from database.
GET
Single Movie
https://api.ewelinaziobro.pl/movies/{idmovie}
Returns all informations about movie with assigned ID.
Required Authorization Endpoint API List
Method
Description
POST
Add Single Movie
https://api.ewelinaziobro.pl/movies
Adds a movie when sending parameters like title, budget, homepage, overwiew, popularity, release_date, revenue, runtime, movie_status, tagline, vote_average, vote_count, is_active.
PATCH
Update Single Movie
https://api.ewelinaziobro.pl/movies/{idmovie}
Updates given informations about movie with assigned ID. Possibles parameters: title, budget, homepage, overwiew, popularity, release_date, revenue, runtime, movie_status, tagline, vote_average, vote_count, is_active.
DELETE
Delete Single Movie
https://api.ewelinaziobro.pl/movies/{idmovie}
Deletes movie with assigned ID from database.
Send GET API request
Response
Send request to get data.