Chef (2014)

When Chef Carl Casper suddenly quits his job at a prominent Los Angeles restaurant after refusing to compromise his creative integrity for its controlling owner, he is left to figure out whats next. Finding himself in Miami, he teams up with his ex-wife, his friend and his son to launch a food truck. Taking to the road, Chef Carl goes back to his roots to reignite his passion for the kitchen -- and zest for life and love.

2014
Comedy
7.0
/1yLaXY38bywjmhakKVj5mzdGuzA.jpg Poster

Cast

Robert Downey Jr.
Robert Downey Jr.
Marvin
Bobby Cannavale
Bobby Cannavale
Tony
Gloria Sandoval
Gloria Sandoval
Flora
Oliver Platt
Oliver Platt
Ramsey Michel
John Leguizamo
John Leguizamo
Martin
Dustin Hoffman
Dustin Hoffman
Riva
Scarlett Johansson
Scarlett Johansson
Molly
Amy Sedaris
Amy Sedaris
Jen
Russell Peters
Russell Peters
Miami Cop
Emjay Anthony
Emjay Anthony
Percy
Gary Teague
Gary Teague
Franklin Barbecue Patron (uncredited)
Jon Favreau
Jon Favreau
Carl Casper
Jenna Saab
Jenna Saab
Concert Patron (uncredited)
Americus Abesamis
Americus Abesamis
Food Truck Patron (uncredited)
Sofía Vergara
Sofía Vergara
Inez
Quintin McKemie II
Quintin McKemie II
Food Truck Customer (uncredited)
Gary Clark Jr.
Gary Clark Jr.
Gary Clark, Jr.
Jody Nolan
Jody Nolan
Beer Garden Patron (uncredited)
Alfredo Ortiz
Alfredo Ortiz
Band Member
Rigo Obezo
Rigo Obezo
Construction Worker (uncredited)
Noa Lindberg
Noa Lindberg
Hungry Jogger (uncredited)
Julian Graham
Julian Graham
Shocked Restaurant Patron (uncredited)
Santos Caraballo
Santos Caraballo
Club Salsa Dancer (uncredited)
Colombe Jacobsen-Derstine
Colombe Jacobsen-Derstine
Lisa (uncredited)
Sam Stinson
Sam Stinson
Customer (uncredited)
Rachel Faulkner
Rachel Faulkner
Food Truck Customer (uncredited)
Cody Daniel
Cody Daniel
Allen Chipworth (uncredited)
Roy Choi
Roy Choi
Roy Choi
Reed Penney
Reed Penney
Austin Food Truck Patron (uncredited)
William Shannon Williams
William Shannon Williams
Food Truck Customer (uncredited)
Joshua Gutiérrez
Joshua Gutiérrez
El Cabbie (uncredited)
Priyom Haider
Priyom Haider
Food Truck Patron #1 (uncredited)
Will Schutze
Will Schutze
Mr. Bonetangles
Jose C. Hernandez
Jose C. Hernandez
Abuelito
Nili Fuller
Nili Fuller
Marvin's Assistant
Aaron Franklin
Aaron Franklin
Aaron Franklin
Maria F. Blanco
Maria F. Blanco
Salsa Dancer (uncredited)
Christina Cha
Christina Cha
Shocked Restaurant Patron (uncredited)
Miguel Izaguirre
Miguel Izaguirre
Food Truck Customer (uncredited)
Gayle Kate
Gayle Kate
Farmers Market Lady (uncredited)
Paola Katsapas
Paola Katsapas
Bikini Girl (uncredited)
David W. LeBlanc
David W. LeBlanc
Hotel Guest (uncredited)
Ryan McInerney
Ryan McInerney
Miami Food Truck Customer (uncredited)
Jay Pennington
Jay Pennington
Cowboy Patron (uncredited)
Radcliff Redding
Radcliff Redding
Restaurant Patron (uncredited)
Arley Ryder
Arley Ryder
Food Truck Patron (uncredited)
Mike Rylander
Mike Rylander
Farmers Market Shopper (uncredited)

Images

Chef Poster
Chef Poster

Detailed Information

General Information

Original Title: Chef

Creators: Hwang Dong-hyuk

Gender: Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $11,000,000.00

Revenue: $50,440,695.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/212778

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

PHP com cURL

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

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

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

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