The Princess Diaries 2: Royal Engagement (2004)

Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Accompanied by her friend Lilly, Mia continues her princess lessons, like riding horses side-saddle and archery. But her already complicated life is turned upside down once again when she learns that she is to take the crown as queen earlier than expected, all while she meets a mysteriously charming young man.

2004
Family
Drama
Romance
Comedy
6.0
/5MoDnvPW64Sfw3QZ6ADnCYopnTv.jpg Poster

Cast

Spencer Breslin
Spencer Breslin
Prince Jacques Dubé
John Rhys-Davies
John Rhys-Davies
Viscount Mabrey
Larry Miller
Larry Miller
Paolo
Julie Andrews
Julie Andrews
Queen Clarisse Renaldi
Sandra Taylor
Sandra Taylor
Reporter Suki Sanchez
Abigail Breslin
Abigail Breslin
Parade Girl Carolina
Chris Pine
Chris Pine
Nicholas Devereaux
Christopher Wynne
Christopher Wynne
Arm Pump Dancer
Greg Lewis
Greg Lewis
Baron Siegfried von Troken
Stan Lee
Stan Lee
Three Stooges Wedding Guest
Bobbi Page
Bobbi Page
Church Choir Member
Anne Hathaway
Anne Hathaway
Mia Thermopolis
David Powledge
David Powledge
Tiny Duval
Bonnie Aarons
Bonnie Aarons
Baroness Joy von Troken
Raven-Symoné
Raven-Symoné
Asana
Kim Thomson
Kim Thomson
Reporter Elsie Penworthy
Caroline Goodall
Caroline Goodall
Mia's Mom Helen
Shannon Wilcox
Shannon Wilcox
Lady Salsa
Paul Williams
Paul Williams
Lord Harmony
Callum Blue
Callum Blue
Andrew Jacoby
Jess Rowland
Jess Rowland
Tall Dancer
Daston Kalili
Daston Kalili
Greek Dancer
Tracy Reiner
Tracy Reiner
Lady Anthony
Jane Morris
Jane Morris
Mabrey's Servant Gretchen
Keisuke Hoashi
Keisuke Hoashi
Japanese Reporter
Patrick Price
Patrick Price
Wedding Guest
Scott Marshall
Scott Marshall
Security Guard Shades
Héctor Elizondo
Héctor Elizondo
Joe
Kate Albrecht
Kate Albrecht
French Citizen
Rowan Joseph
Rowan Joseph
Lord Peroit
Shane Partlow
Shane Partlow
Suki's Camerman
Victoria Chalaya
Victoria Chalaya
Nicholas's Girlfriend #2 (uncredited)
Tom Poston
Tom Poston
Lord Palimore
Paul Vogt
Paul Vogt
Lord Crawley
Heather Matarazzo
Heather Matarazzo
Lilly Moscovitz
Brian Klugman
Brian Klugman
Military Guard
Joel McCrary
Joel McCrary
Prime Minister Motaz
Rajia Baroudi
Rajia Baroudi
Genovian Cafe Patron
Elinor Donahue
Elinor Donahue
Lady Palimore
Steve Restivo
Steve Restivo
Count Vitello
Isabella Hofmann
Isabella Hofmann
Miss Genovia Hildegard
Lorraine Nicholson
Lorraine Nicholson
Princess Lorraine
Judith Baldwin
Judith Baldwin
Wedding Guest
Hope Alexander-Willis
Hope Alexander-Willis
Lady Caroline
Elizabeth Gudenrath
Elizabeth Gudenrath
Princeton College Girl Anna
Tom Hines
Tom Hines
Majordomo
Joe Smith
Joe Smith
Clumsy Dancer
Shea Curry
Shea Curry
Lady's Maid Brigitte
Erik Bragg
Erik Bragg
Security Guard Lionel
Meredith Patterson
Meredith Patterson
Lady Elyssa
Anna Netrebko
Anna Netrebko
Opera Singer Anna Netrebko
Nadege August
Nadege August
Princess Nadege
Charlotte Marshall-Fricker
Charlotte Marshall-Fricker
Princess Grace
Sparrow Heatley
Sparrow Heatley
Paolo's Assistant #1

Images

The Princess Diaries 2: Royal Engagement Poster
The Princess Diaries 2: Royal Engagement Poster

Detailed Information

General Information

Original Title: The Princess Diaries 2: Royal Engagement

Creators: Hwang Dong-hyuk

Gender: Family, Drama, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $40,000,000.00

Revenue: $134,734,481.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/11130

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

PHP com cURL

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

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

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

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