Star Wars (1977)

Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.

1977
Science Fiction
Adventure
Action
8.0
/dw7X9YPjjAfIxKHW04V64Bb9TB0.jpg Poster

Cast

Harrison Ford
Harrison Ford
Han Solo
Mark Hamill
Mark Hamill
Luke Skywalker
James Earl Jones
James Earl Jones
Darth Vader (voice) (uncredited)
Carrie Fisher
Carrie Fisher
Princess Leia Organa
Peter Diamond
Peter Diamond
Stormtrooper / Tusken Raider / Death Star Trooper / Garouf Lafoe (uncredited)
Garrick Hagon
Garrick Hagon
Red Three (Biggs Darklighter)
Malcolm Tierney
Malcolm Tierney
Lt. Shann Childsen (uncredited)
Angus MacInnes
Angus MacInnes
Gold Leader
Colin Higgins
Colin Higgins
Rebel Pilot, Col. Takbright (uncredited)
Shane Rimmer
Shane Rimmer
InCom Engineer (uncredited)
Rusty Goffe
Rusty Goffe
Kabe / Jawa / GONK Droid (uncredited)
Alec Guinness
Alec Guinness
Obi-Wan "Ben" Kenobi
Peter Cushing
Peter Cushing
Grand Moff Tarkin
Ron Tarr
Ron Tarr
Jabba's Henchman (uncredited)
Kenny Baker
Kenny Baker
R2-D2
Jack Purvis
Jack Purvis
Chief Jawa
Anthony Daniels
Anthony Daniels
C-3PO
Alfie Curtis
Alfie Curtis
Dr. Evazan (uncredited)
Jon Berg
Jon Berg
Cantina Alien (uncredited)
Alan Harris
Alan Harris
Leia's Rebel Escort (uncredited)
Derek Lyons
Derek Lyons
Temple Guard / Medal Bearer (uncredited)
Salo Gardner
Salo Gardner
Cantina Patron (uncredited)
Denis Lawson
Denis Lawson
Red Two (Wedge Antilles)
John Cannon
John Cannon
Stormtrooper (uncredited)
Richard LeParmentier
Richard LeParmentier
General Motti
William Hootkins
William Hootkins
Red Six (Porkins)
Peter Mayhew
Peter Mayhew
Chewbacca
Peter Sumner
Peter Sumner
Lt. Pol Treidum (uncredited)
David Prowse
David Prowse
Darth Vader (performer)
Rick McCallum
Rick McCallum
Stormtrooper (uncredited)
Lorne Peterson
Lorne Peterson
Massassi Base Rebel Scout (uncredited)
Tom Sylla
Tom Sylla
Massassi Outpost Announcer / Various Voices (voice) (uncredited)
Drewe Henley
Drewe Henley
Red Leader
David Ankrum
David Ankrum
Red Two, Wedge Antilles (voice) (uncredited)
Joe Johnston
Joe Johnston
Death Star Trooper (uncredited)
Phil Tippett
Phil Tippett
Cantina Alien (uncredited)
Lightning Bear
Lightning Bear
Stormtrooper (uncredited)
Michael Leader
Michael Leader
Stormtrooper
Tiffany Hillkurtz
Tiffany Hillkurtz
Jawa (uncredited)
Steve Williams
Steve Williams
Mos Eisley Citizen (uncredited)
Scott Beach
Scott Beach
Stormtrooper (voice) (uncredited)
Don Henderson
Don Henderson
General Taggi
Eddie Byrne
Eddie Byrne
General Willard
George Roubicek
George Roubicek
Cmdr. Praji (Imperial Officer #2 on rebel ship) (uncredited)
Anthony Forrest
Anthony Forrest
Sandtrooper / Fixer (uncredited)
Jack Klaff
Jack Klaff
Red Four (John "D")
Shelagh Fraser
Shelagh Fraser
Aunt Beru
Alex McCrindle
Alex McCrindle
General Dodonna
Jeremy Sinden
Jeremy Sinden
Gold Two
Graham Ashley
Graham Ashley
Gold Five
Leslie Schofield
Leslie Schofield
Commander #1
Doug Beswick
Doug Beswick
Cantina Alien (uncredited)
Paul Blake
Paul Blake
Greedo (uncredited)
Ted Burnett
Ted Burnett
Wuher (uncredited)
John Chapman
John Chapman
Drifter (Red 12) (uncredited)
Maria De Aragon
Maria De Aragon
Greedo (uncredited)
Ted Gagliano
Ted Gagliano
Stormtrooper with Binoculars (uncredited)
Steve Gawley
Steve Gawley
Death Star Trooper (uncredited)
Barry Gnome
Barry Gnome
Kabe (uncredited)
Colin Michael Kitchens
Colin Michael Kitchens
Stormtrooper (voice) (uncredited)
Al Lampert
Al Lampert
Daine Jir (uncredited)
John Sylla
John Sylla
Cantina Voices (voice) (uncredited)
Morgan Upton
Morgan Upton
Stormtrooper (voice) (uncredited)

Where Watch

Images

Star Wars Poster
Star Wars Poster

Video

trailer Oficial

Star Wars: Uma Nova Esperança - Trailer

trailer Oficial

Detailed Information

General Information

Original Title: Star Wars

Creators: Hwang Dong-hyuk

Gender: Science Fiction, Adventure, Action,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $11,000,000.00

Revenue: $775,398,007.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/11

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

PHP com cURL

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

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

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

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