Thor (2011)

Against his father Odins will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.

2011
Fantasy
Adventure
Action
6.0
/aEV9QmgBqjRTdjsvdCgdK89tavQ.jpg Poster

Cast

Richard Cetrone
Richard Cetrone
Frost Giant Captain
Idris Elba
Idris Elba
Heimdall
Stephen Oyoung
Stephen Oyoung
Einherjar Guard (uncredited)
Samuel L. Jackson
Samuel L. Jackson
Nick Fury (uncredited)
Douglas Tait
Douglas Tait
Frost Giant (uncredited)
Anthony Hopkins
Anthony Hopkins
Odin
Tom Hiddleston
Tom Hiddleston
Loki
Jeremy Renner
Jeremy Renner
Clint Barton / Hawkeye (uncredited)
Rene Russo
Rene Russo
Frigga
Stellan Skarsgård
Stellan Skarsgård
Erik Selvig
Kat Dennings
Kat Dennings
Darcy Lewis
Ray Stevenson
Ray Stevenson
Volstagg
Chris Hemsworth
Chris Hemsworth
Thor
Colm Feore
Colm Feore
King Laufey
Carrie Lazar
Carrie Lazar
Viking Mother
Matt Battaglia
Matt Battaglia
Pete
Josh Dallas
Josh Dallas
Fandral
Clark Gregg
Clark Gregg
Agent Coulson
Tadanobu Asano
Tadanobu Asano
Hogun
Stan Lee
Stan Lee
Stan the Man
Adriana Barraza
Adriana Barraza
Isabela Alvarez
Rob Mars
Rob Mars
Orderly
Maximiliano Hernández
Maximiliano Hernández
Agent Sitwell
Natalie Portman
Natalie Portman
Jane Foster
Jaimie Alexander
Jaimie Alexander
Sif
Juliet Lopez
Juliet Lopez
Admission Nurse
Josh Coxx
Josh Coxx
Frost Giant Hailstrum
Shawn-Caulin Young
Shawn-Caulin Young
Viking
Jim Palmer
Jim Palmer
SHIELD Guard
Dakota Goyo
Dakota Goyo
Young Thor
Harley Graham
Harley Graham
Viking Child
Kinsey McLean
Kinsey McLean
Viking
Michelle Csitos
Michelle Csitos
Viking Village Wife (uncredited)
Hilary Pingle
Hilary Pingle
Viking
Rachel de la Torre
Rachel de la Torre
Nurse #1 (uncredited)
Joseph Gatt
Joseph Gatt
Frost Giant Grundroth
Jamie McShane
Jamie McShane
Agent Jackson
Darren Kendrick
Darren Kendrick
Frost Giant Sentry
Justice J. Smith Jr.
Justice J. Smith Jr.
Frost Giant Brute
Luke Massy
Luke Massy
Frost Giant Raze
Matthew Ducey
Matthew Ducey
Einherjar Guard
Jason Camp
Jason Camp
Einherjar Guard
Buddy Sosthand
Buddy Sosthand
Agent Delancey
Blake Silver
Blake Silver
Techie
Dale Godboldo
Dale Godboldo
Agent Garrett
Patrick O'Brien Demsey
Patrick O'Brien Demsey
Agent Cale
Seth Coltan
Seth Coltan
Townie
J. Michael Straczynski
J. Michael Straczynski
Townie
Joel McCrary
Joel McCrary
Drunk Townie
Isaac Kappy
Isaac Kappy
Pet Store Clerk
Alexander Wright
Alexander Wright
Viking Elder
Kelly Hawthorne
Kelly Hawthorne
Viking
Ted Allpress
Ted Allpress
Young Loki
Walt Simonson
Walt Simonson
Guest (uncredited)
Vanessa Bednar
Vanessa Bednar
Viking Villager (uncredited)

Images

Thor Poster
Thor Poster

Video

trailer Oficial

Thor - Trailer dublado

trailer Oficial

trailer Oficial

Thor 2011 Trailer Dublado #Universocinematográficomarvel

trailer Oficial

Detailed Information

General Information

Original Title: Thor

Creators: Hwang Dong-hyuk

Gender: Fantasy, Adventure, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $150,000,000.00

Revenue: $449,326,618.00

Awards and Recognitions

  • Emmy Award - Melhor Ator em Série Dramática (Lee Jung-jae)
  • Golden Globe - Melhor Ator Coadjuvante em Série (O Yeong-su)
  • Screen Actors Guild Award - Melhor Elenco em Série Dramática
  • Critics' Choice Television Award - Melhor Série Dramática

Interesting facts

  • A série se tornou a mais assistida da Netflix em seu lançamento.
  • O criador Hwang Dong-hyuk levou mais de 10 anos para desenvolver a série.
  • Os uniformes dos guardas foram inspirados em roupas de ginástica infantis.
  • O jogo "Batatinha Frita 1, 2, 3" é um jogo infantil coreano real.

API

Acesse os dados do filme/série através da nossa API REST. Use o endpoint abaixo para obter informações completas em formato JSON.

Endpoint da API

https://api.moviendb.com/v1/movie/10195

Parâmetros: {type} = "movie" ou "tv" | {id} = ID do filme/série

PHP com cURL

<?php
  $url = "https://api.moviendb.com/v1/movie/10195";

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $response = curl_exec($ch);
  $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  curl_close($ch);

  if ($httpCode === 200) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro: " . $httpCode;
}
?>

PHP com file_get_contents

<?php
$url = "https://api.moviendb.com/v1/movie/10195";

$response = file_get_contents($url);

if ($response !== false) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro ao fazer a requisição";
}
?>

JavaScript com Fetch

const url = 'https://api.moviendb.com/v1/movie/10195';

fetch(url, {
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'User-Agent': 'MovieDB-Client/1.0'
    }
})
.then(response => {
    if (!response.ok) {
        throw new Error(`HTTP error! status: ${response.status}`);
    }
    return response.json();
})
.then(data => {
    console.log(data);
    // Processar os dados aqui
})
.catch(error => {
    console.error('Erro:', error);
});

Exemplo de Resposta JSON

{
  "id": 93405,
  "name": "Round 6",
  "original_name": "오징어 게임",
  "overview": "Centenas de jogadores falidos aceitam um estranho convite...",
  "first_air_date": "2021-09-17",
  "vote_average": 8.0,
  "vote_count": 14250,
  "genres": [
    {
      "id": 18,
      "name": "Drama"
    },
    {
      "id": 9648,
      "name": "Mistério"
    }
  ],
  "seasons": [
    {
      "season_number": 1,
      "episode_count": 9,
      "air_date": "2021-09-17"
    }
  ],
  "created_by": [
    {
      "name": "Hwang Dong-hyuk"
    }
  ]
}