Road to Utopia (1946)

While on a ship to Skagway, Alaska, Duke and Chester find a map to a secret gold mine, which had been stolen by thugs. In Alaska to recover her fathers map, Sal Van Hoyden falls in with Ace Larson, who secretly wants to steal the gold mine for himself. Duke, Chester, the thugs, Ace and his henchman chase each other all over the countryside—for the map.

1946
Music
Family
Adventure
Comedy
6.0
/3N5YNjkwSJxppBCilUZZjMdCyI5.jpg Poster

Cast

Fred Graham
Fred Graham
Henchman with Ace at Bar (uncredited)
Romaine Callender
Romaine Callender
Man in Top Hat (uncredited)
Bob Hope
Bob Hope
Chester Hooton
Bobby Barber
Bobby Barber
Bartender (uncredited)
Ethan Laidlaw
Ethan Laidlaw
Saloon Brawler (uncredited)
Sailor Vincent
Sailor Vincent
Henchman in Saloon (uncredited)
Paul Newlan
Paul Newlan
Tough Ship's Purser (uncredited)
Charles Sullivan
Charles Sullivan
Prospector (uncredited)
George Lloyd
George Lloyd
Prospector (uncredited)
Dorothy Lamour
Dorothy Lamour
Sal Van Hoyden
Edgar Dearing
Edgar Dearing
Official Policeman (uncredited)
Jack Rutherford
Jack Rutherford
Townsman (uncredited)
Chester Conklin
Chester Conklin
Amateur Contestant Banjo Player (uncredited)
Sammy Stein
Sammy Stein
Husky Sailor (uncredited)
Frank Moran
Frank Moran
Bartender (uncredited)
Harry Semels
Harry Semels
Lombardi - Spitting Passenger (uncredited)
Bing Crosby
Bing Crosby
Duke Johnson
Douglass Dumbrille
Douglass Dumbrille
Ace Larson
Robert Benchley
Robert Benchley
Narrator
Al Bridge
Al Bridge
Ship Captain (uncredited)
Billy Bletcher
Billy Bletcher
Bear (uncredited) (voice)
Ronald R. Rondell
Ronald R. Rondell
Hotel Manager (uncredited)
Lee Shumway
Lee Shumway
Policeman (uncredited)
William Benedict
William Benedict
Second Newsboy (uncredited)
Billy Engle
Billy Engle
Amateur Contest Contestant (uncredited)
Al Ferguson
Al Ferguson
Policeman (uncredited)
Al Hill
Al Hill
Townsman (uncredited)
Frank Marlowe
Frank Marlowe
Sailor Reporting to Head Purser (uncredited)
Harry 'Snub' Pollard
Harry 'Snub' Pollard
Amateur Contest Violinist (uncredited)
Charles C. Wilson
Charles C. Wilson
Official Policeman (uncredited)
Nestor Paiva
Nestor Paiva
McGurk
Charles Gemora
Charles Gemora
Bear (uncredited)
Jack La Rue
Jack La Rue
LeBec
Brandon Hurst
Brandon Hurst
Man at Zambini's (uncredited)
Stanley Andrews
Stanley Andrews
Joe - Official at Ship (uncredited)
Pat West
Pat West
Bartender (uncredited)
Jerry Colonna
Jerry Colonna
Man on boat to Alaska (uncredited)
Eddie Borden
Eddie Borden
Man in Saloon (uncredited)
Jim Thorpe
Jim Thorpe
Collins - Ship's Passenger (uncredited)
Robert Barrat
Robert Barrat
Sperry
Arthur Loft
Arthur Loft
Head Purser (uncredited)
Claire James
Claire James
Girl (uncredited)
Hillary Brooke
Hillary Brooke
Kate
George McKay
George McKay
Waiter (uncredited)

Images

Road to Utopia Poster
Road to Utopia Poster

Detailed Information

General Information

Original Title: Road to Utopia

Creators: Hwang Dong-hyuk

Gender: Music, Family, Adventure, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.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/29021

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

PHP com cURL

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

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

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

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