Just Go with It (2011)

While romancing Palmer, a much younger schoolteacher, plastic surgeon Danny Maccabee enlists his loyal assistant Katherine to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, Katherines kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.

2011
Romance
Comedy
6.0
/glC4pDnSieQ9NGU501rfVIqUCTB.jpg Poster

Cast

Branscombe Richmond
Branscombe Richmond
Bartender
Rachel Specter
Rachel Specter
Lisa Hammond
Minka Kelly
Minka Kelly
Joanna Damon
Nicole Kidman
Nicole Kidman
Devlin Adams
Adam Sandler
Adam Sandler
Danny Maccabee
Sadie Sandler
Sadie Sandler
Hawaiian Family at Rope Bridge
Jackie Sandler
Jackie Sandler
Veruca
Mario Joyner
Mario Joyner
Henderson
Carol Ann Susi
Carol Ann Susi
Mrs. Maccabee
Lorna Scott
Lorna Scott
Big Country
Jessica Jade Andres
Jessica Jade Andres
Teenage Girl at Dive Restaurant
Allen Covert
Allen Covert
Soul Patch
Peter Dante
Peter Dante
Pick-Up Guy #2
Jonathan Loughran
Jonathan Loughran
Pick Up Guy #1
Kent Avenido
Kent Avenido
Guy at Dive Restaurant
Dan Patrick
Dan Patrick
Tanner Patrick
Sunny Sandler
Sunny Sandler
Hawaiian Family at Rope Bridge
Nick Swardson
Nick Swardson
Eddie Simms
Bailee Madison
Bailee Madison
Maggie Murphy
Jennifer Aniston
Jennifer Aniston
Katherine Murphy
Dave Matthews
Dave Matthews
Ian Maxtone Jones
Keegan-Michael Key
Keegan-Michael Key
Ernesto
Marisa Saks
Marisa Saks
Bikini Model (uncredited)
Brendon Eggertsen
Brendon Eggertsen
Ariel
Rachel Dratch
Rachel Dratch
Kirsten Brant
Sharon Ferguson
Sharon Ferguson
Pregnant Woman at McFunnigans
Kevin Nealon
Kevin Nealon
Adon
Jillian Nelson
Jillian Nelson
Young College Girl
Dana Goodman
Dana Goodman
Bridesmaid
Brooklyn Decker
Brooklyn Decker
Palmer Dodge
Arlene Newman
Arlene Newman
Hotel Guest (uncredited)
Rakefet Abergel
Rakefet Abergel
Patricia
Julia Lea Wolov
Julia Lea Wolov
Bridesmaid
Vanessa Villalovos
Vanessa Villalovos
Saleswoman
Michael Laskin
Michael Laskin
Mr. Maccabee
Lori Heuring
Lori Heuring
Salesgirl
Griffin Gluck
Griffin Gluck
Michael Murphy
Todd Sherry
Todd Sherry
Check-In Clerk
Lilian Tapia
Lilian Tapia
Rosa
Heidi Montag
Heidi Montag
Adon's Wife
Andy Roddick
Andy Roddick
Good Looking Guy on Plane

Images

Just Go with It Poster
Just Go with It Poster

Detailed Information

General Information

Original Title: Just Go with It

Creators: Hwang Dong-hyuk

Gender: Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $80,000,000.00

Revenue: $214,945,591.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/50546

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

PHP com cURL

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

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

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

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