Questions tagged [themoviedb-api]

The TheMovieDB API is a simple API for getting community built content for movies and actors from TheMovieDB site

TMDb is a free and community maintained movie database. It has a huge database of movies, actors, facts and all related details. It's similar to IMDB, but open to all. You need either a free or commercial API key to access the API. There are few wrapper libraries for languages like PHP, C#, and Java.

For more information, visit https://www.themoviedb.org/.

185 questions
0
votes
4 answers

Parsing JSON Multiple Levels With JavaScript

Hello currently I am trying to get a specific value, but not entirely sure how. Below is part of the JSON data that i am using. the data is set to equal to "entries" var entries = "credits": { "crew": [ { "id": 7469, …
Craig
  • 133
  • 1
  • 13
0
votes
2 answers

Parsing JsonP with Javascript

I am trying to parse JSON data like this: var baseUrl = 'https://api.themoviedb.org/3/movie/' var movieID = '550' var detailUrl = '&append_to_response=releases,trailers,credits&callback=?' var apiKey =…
Craig
  • 133
  • 1
  • 13
0
votes
1 answer

how to use TMDB - Perl wrapper for The MovieDB API

I'm trying to use TMDB - Perl wrapper for The MovieDB API http://metacpan.org/pod/TMDB and i'm stuck I can't work out how to extract the components. for example given #!/usr/bin/perl use TMDB; use Data::Dumper qw(Dumper); use CGI; use…
Holly
  • 307
  • 1
  • 8
  • 17
0
votes
2 answers

Ruby TMDB API Save a Movie to database

I am using the ruby tmdb gem to find movies from TMDB. I have my API key set up and I know how to find a movie in the rails console So Say I run this @movies = TmdbMovie.find(:title => 'The Social Network') in the rails console This returns a whole…
0
votes
1 answer

Use python object retrieved with TMDB API

How can i use some data retrieved with TMDB API? This is the function: class Movies(Core): def __init__(self, title="", limit=False): self.limit = limit self.update_configuration() title = self.escape(title) …
masca88
  • 1
  • 1
  • 2
0
votes
1 answer

How to use Tmdb API or any other API

i am a newbie android coder. i am writing a practicing app to search Movie name. I have made XML and java which has a textbox for user to type movies name, but i don't know how to search this over internet! as i know i have to use IMDb or TMDb API,…
Reza_Rg
  • 3,345
  • 7
  • 32
  • 48
-1
votes
1 answer

Get a random movie from the API call

I'm using The MovieDatabase API to get movie results. To get a random movie I have a few functions: 1) The task to fetch the total number of pages depending on the filters. func performTask(numOption: Int, selectedGenresViewModel:…
-1
votes
1 answer

How can I print the original title of the top 50 movies from themoviedatabase.org with python?

hello all i'm learning python recently and i need to analyze the web of themoviedb.org website. I want to extract all the movies in the database and I want to print the original title of the first 50 movies.This is a piece of the json file that i…
Elly
  • 345
  • 1
  • 8
-1
votes
1 answer

Using an API with Svelte

I'm having trouble fetching data from the moviedb using Svelte. That's how I try to import the data.