Gorgeous (1999)

When Ah Bu, a girl from a small fishing town in Taiwan, finds a glass bottle with a romantic message, she travels to Hong Kong to find her prince charming. As it turns out, her prince charming, Albert, happens to be gay. But all is not lost when Ah Bu meets the dashing Chi Wu. Meanwhile, Ah Bus boyfriend from Taiwan comes looking for her, as the action and romance follow Ah Bu back to Taiwan.

1999
Adventure
Romance
Action
Comedy
6.0
/8sSQVFmKhPq6wuArxY4u6yjNAqf.jpg Poster

Cast

Jackie Chan
Jackie Chan
C.N. Chan
Annie Wu
Annie Wu
Xiao Jun
Ken Lo Wai-Kwong
Ken Lo Wai-Kwong
Lo's Bodyguard
William Duen Wai-Lun
William Duen Wai-Lun
Lo's Bodyguard
Tony Leung Chiu-wai
Tony Leung Chiu-wai
Albert
Daniel Wu
Daniel Wu
Photographer's Assistant
Sam Lee
Sam Lee
Gay Thug
Lam Suet
Lam Suet
Bu's Father's Friend (uncredited)
Tenky Tin Kai-Man
Tenky Tin Kai-Man
Gay Thug
Elaine Jin Yan-Ling
Elaine Jin Yan-Ling
Bu's Mother
Shu Qi
Shu Qi
Ah Bu
Stephen Chow
Stephen Chow
Policeman with Dog
Vincent Kok Tak-Chiu
Vincent Kok Tak-Chiu
Man at Pier
Edmond So Chi-Wai
Edmond So Chi-Wai
Gay Thug
Richie Jen
Richie Jen
Long Yi
Kwan Yung
Kwan Yung
Lo's Bodyguard
Bradley James Allan
Bradley James Allan
Alan
Ken Wong
Ken Wong
Photographer's Assistant
Emil Chau
Emil Chau
L.W. Lo
Tats Lau Yee-Tat
Tats Lau Yee-Tat
Chan's Butler
Chan Chung-Yung
Chan Chung-Yung
Bu's Father
Carmen Soo
Carmen Soo
Gloria
Stephen Fung
Stephen Fung
Photographer's Assistant
Sandra Ng Kwan-Yu
Sandra Ng Kwan-Yu
Airport Pickpocket
Lee Lik-Chi
Lee Lik-Chi
Airport Pickpocket
Cheung Tat-Ming
Cheung Tat-Ming
Glasses Guy on Airplane
Law Kar-Ying
Law Kar-Ying
Restaurant Manager
Eric Kot Man-Fai
Eric Kot Man-Fai
Man at Pier
Mark Lui
Mark Lui
Lo's Consultant
Terence Tsui Chi-Hung
Terence Tsui Chi-Hung
Gay Thug
Sammy Leung
Sammy Leung
Factory Worker
Joe Cheng Cho
Joe Cheng Cho
Security Manager
Eileen Tung Oi-Ling
Eileen Tung Oi-Ling
Elaine
Jo Kok Cho-Lam
Jo Kok Cho-Lam
Pretty Girl at Seaside
Asuka Higuchi
Asuka Higuchi
Pretty Girl at Seaside

Images

Gorgeous Poster
Gorgeous Poster

Detailed Information

General Information

Original Title: Gorgeous

Creators: Hwang Dong-hyuk

Gender: Adventure, Romance, Action, 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/10951

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

PHP com cURL

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

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

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

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