This Angular application interacts with The Movie Database (TMDb) API, providing information about movies and series. You can explore popular lists, get specific details, and perform searches.
https://main.d4yhjf599zyca.amplifyapp.com/
Before using the application, you'll need a valid API key from TMDb. Follow these steps:
- Sign up at TMDb Developer.
- Copy your generated API key.
- Popular Movies: Get a list of currently trending movies using the endpoint /trending/movie/day.
- Popular Series: Explore currently popular TV series using the endpoint /tv/popular.
- Movie Details: View detailed information about a specific movie using the endpoint /movie/{movieId}.
- Series Details: Explore in-depth details of a specific TV series using the endpoint /tv/{seriesId}.
- Search Functionality: Search for movies and series using various criteria with appropriate endpoints.
Update the api-constants.ts
file with your API key:
// api-constants.ts
export const API_KEY = 'YOUR_API_KEY';
export const API_URL = 'https://api.themoviedb.org/3';
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.5.