Netflix clone is a project based on Swift 5 , where a user view Trending Movies , Trending Shows , Popular Movies , Upcoming Movies in Home View. Also he can watch & download movies & tv shows.
- Using TMDB to fetch Movie APIs
- Using YouTube API to show movie trailer
- Dark mode enabled in App
- Use SdWebImage package to set images for URL
- Use Gradient Layer in Header of Movies
GET https://api.themoviedb.org/3/trending/movie/day?api_key=<<api_key>>
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |
GET https://api.themoviedb.org/3/trending/tv/day?api_key=<<api_key>>
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |
GET https://api.themoviedb.org/3/movie/upcoming?api_key=<<api_key>>&language=en-US&page=1
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |
GET https://api.themoviedb.org/3/movie/popular?api_key=<<api_key>>&language=en-US&page=1
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |
GET https://api.themoviedb.org/3/movie/top_rated?api_key=<<api_key>>&language=en-US&page=1
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |