Blended (2014)

Recently divorced mom Lauren and widowed dad Jim let their friends push them into a blind date, which goes disastrously wrong. Unsurprisingly, neither wants to see the other ever again. However, fate intervenes when both Jim and Lauren, unbeknownst to each other, purchase one-half of the same vacation package at a South African resort for families, during spring break. They and their children are forced to share the same romantic suite and participate in a slew of family activities together.

2014
Romance
Comedy
6.0
/tD0UJtt237FAST3rD1htrGLBKAH.jpg Poster

Cast

Wendi McLendon-Covey
Wendi McLendon-Covey
Jen
Joel McHale
Joel McHale
Mark
Rob Moran
Rob Moran
Baseball Dad
Robert Harvey
Robert Harvey
Baseball Fan
Shaquille O'Neal
Shaquille O'Neal
Doug
Adam Sandler
Adam Sandler
Jim
Sadie Sandler
Sadie Sandler
Little League Announcer
Jackie Sandler
Jackie Sandler
Hollywood Stepmom
Drew Barrymore
Drew Barrymore
Lauren
Christine Horn
Christine Horn
Tribal Villager (uncredited)
Terry Crews
Terry Crews
Nickens
Anna Colwell
Anna Colwell
Bubbles
Alexis Arquette
Alexis Arquette
Georgina
Allen Covert
Allen Covert
220 Tom
Bella Thorne
Bella Thorne
Hilary
Jonathan Loughran
Jonathan Loughran
Umpire
J.D. Donaruma
J.D. Donaruma
Standard Fence Coach
Dan Patrick
Dan Patrick
Dick
Sunny Sandler
Sunny Sandler
Wall Street Stepdaughter
Susan Yeagley
Susan Yeagley
Southern Stepmom
Mary Pat Gleason
Mary Pat Gleason
Pharmacy Cashier
Jessica Lowe
Jessica Lowe
Ginger
Chris April
Chris April
Safety Director
Alyvia Alyn Lind
Alyvia Alyn Lind
Lou
Lauren Lapkus
Lauren Lapkus
Tracy
Kevin Nealon
Kevin Nealon
Eddy
Abdoulaye N'Gom
Abdoulaye N'Gom
Mfana
Braxton Beckham
Braxton Beckham
Brendan
Emma Fuhrmann
Emma Fuhrmann
Espn
Kyle Red Silverstein
Kyle Red Silverstein
Tyler
Zak Henri
Zak Henri
Jake
Katheryn Cain
Katheryn Cain
British Stepmon
Dale Steyn
Dale Steyn
Dale
Tim Herlihy
Tim Herlihy
Basketball Dad
Jared Sandler
Jared Sandler
Cute Teenage Boy
Josette Eales
Josette Eales
Massage Instructor
Marissa Raisor
Marissa Raisor
Bethany
Ashley Pike
Ashley Pike
Britney
Casey Luckey
Casey Luckey
Bunny
Chris Titone
Chris Titone
Umpire
Michael Buscemi
Michael Buscemi
Baseball Dad
Jackie Goldston
Jackie Goldston
Closet Client
Hannah Covert
Hannah Covert
Dick's Kid #1
Cullen Tonry
Cullen Tonry
Little Boy
Bill Romanowski
Bill Romanowski
Baseball Fan
Ivan Menchell
Ivan Menchell
Baseball Fan in Bleachers (uncredited)

Images

Blended Poster
Blended Poster

Video

trailer Oficial

Juntos e Misturados - Trailer Oficial 1 (leg) [HD] | 17 de julho nos cinemas

trailer Oficial

Detailed Information

General Information

Original Title: Blended

Creators: Hwang Dong-hyuk

Gender: Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $40,000,000.00

Revenue: $128,000,000.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/232672

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

PHP com cURL

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

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

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

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