Superman (1978)

Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane. Clark must summon his superhero alter-ego when the nefarious Lex Luthor launches a plan to take over the world.

1978
Science Fiction
Adventure
Action
7.0
/sm6BLvYCSe4pUpW2UrCKSsS1o0B.jpg Poster

Cast

Rex Everhart
Rex Everhart
Desk Sergeant
Matt Russo
Matt Russo
News Vendor
Jack O'Halloran
Jack O'Halloran
Non
Terence Stamp
Terence Stamp
General Zod
Ned Beatty
Ned Beatty
Otis
Gene Hackman
Gene Hackman
Lex Luthor
Paul Tuerpe
Paul Tuerpe
Sgt. Hayley
William Russell
William Russell
8th Elder
Marc McClure
Marc McClure
Jimmy Olsen
Weston Gavin
Weston Gavin
Mugger
Michael Ensign
Michael Ensign
Newscaster
Shane Rimmer
Shane Rimmer
Naval Transport Commander (uncredited)
Steve Kahan
Steve Kahan
Officer 1
Richard Donner
Richard Donner
Man in Street (extended version) (uncredited)
John Ratzenberger
John Ratzenberger
1st Controller
Christopher Reeve
Christopher Reeve
Clark Kent / Superman
Marlon Brando
Marlon Brando
Jor-El
John Stuart
John Stuart
10th Elder
Sarah Douglas
Sarah Douglas
Ursa
Glenn Ford
Glenn Ford
Pa Kent
Billy J. Mitchell
Billy J. Mitchell
1st Editor
Alan Harris
Alan Harris
Man on Daily Planet Rooftop (uncredited)
Colin Skeaping
Colin Skeaping
Pilot
Margot Kidder
Margot Kidder
Lois Lane
David Calder
David Calder
3rd Crewman
Trevor Howard
Trevor Howard
1st Elder
Jackie Cooper
Jackie Cooper
Perry White
Valerie Perrine
Valerie Perrine
Eve Teschmacher
Susannah York
Susannah York
Lara
Leueen Willoughby
Leueen Willoughby
2nd Secretary
John Hollis
John Hollis
4th Elder
Jeff East
Jeff East
Young Clark Kent
Miquel Brown
Miquel Brown
8th Reporter
Robert Henderson
Robert Henderson
2nd Editor
Larry Lamb
Larry Lamb
1st Reporter
Lise Hilboldt
Lise Hilboldt
1st Secretary
Bruce Boa
Bruce Boa
General (extended version) (uncredited)
Vincent Marzello
Vincent Marzello
1st Copy Boy
Ray Hassett
Ray Hassett
Officer 2
Kirk Alyn
Kirk Alyn
Sam Lane (uncredited)
David Baxt
David Baxt
Burglar
Aaron Smolinski
Aaron Smolinski
Baby Clark Kent
Norwich Duff
Norwich Duff
Newscaster
Maria Schell
Maria Schell
Vond-Ah
Phyllis Thaxter
Phyllis Thaxter
Ma Kent
Harry Andrews
Harry Andrews
2nd Elder
Diane Sherry Case
Diane Sherry Case
Lana Lang
Vass Anderson
Vass Anderson
3rd Elder
James Garbutt
James Garbutt
5th Elder
David Neal
David Neal
7th Elder
John F. Parker
John F. Parker
4th Reporter
Rex Reed
Rex Reed
Rex Reed
Oz Clarke
Oz Clarke
4th Hood
Brian Protheroe
Brian Protheroe
Co Pilot
Larry Hagman
Larry Hagman
Major
Robert MacLeod
Robert MacLeod
General
Alan Tilvern
Alan Tilvern
2nd Controller
Mark Wynter
Mark Wynter
Mate
Noel Neill
Noel Neill
Ella Lane (uncredited)
Tony Selby
Tony Selby
Hood (uncredited)
David de Keyser
David de Keyser
Warden (voice) (uncredited)

Images

Superman Poster
Superman Poster

Detailed Information

General Information

Original Title: Superman

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Adventure, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $55,000,000.00

Revenue: $300,478,449.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/1924

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

PHP com cURL

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

  $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/1924";

$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/1924';

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"
    }
  ]
}