@Ahmed3del said: how do i get images
how do i get images from the api
When an API Request is made, in the responses received you will find the Path of the images: poster_path or backdrop_path or profile_path or logo_path or still_path.
Something like that:
use html template if you are in a website, use this https://image.tmdb.org/t/p/original/${movie.backdrop_path}, basically you have to add additional url "https://image.tmdb.org/t/p/original/" before backdrop_path.
Can't find a movie or TV show? Login to create it.
Reply by ticao2 š§š· pt-BR
on July 2, 2023 at 7:51 AM
When an API Request is made, in the responses received you will find the Path of the images:
poster_path or backdrop_path or profile_path or logo_path or still_path.
Something like that:
To access/download the image use the basic images URL.
The request should be similar to these:
https://image.tmdb.org/t/p/original/wigZBAmNrIhxp2FNGOROUAeHvdh.jpg
Make sure to read the documentation around images.
https://developer.themoviedb.org/docs/image-basics
https://developer.themoviedb.org/reference/configuration-details
Image Sizes
Reply by satyamramanujan
on July 4, 2023 at 10:52 AM
use html template if you are in a website, use this
https://image.tmdb.org/t/p/original/${movie.backdrop_path}
, basically you have to add additional url "https://image.tmdb.org/t/p/original/" before backdrop_path.