Porn and Ice Cream (2022)

Two socially-awkward thirty-somethings and a young con woman start a rock band that takes the Buenos Aires music scene by storm.

2022
Comedy
7.0
/4BOfJlIY99rCrDFI2nR0ID6Isu8.jpg Poster

Episodes

Episódio 1
0h 30min
Episódio 1
Episódio 1
Pablo and Ramón meet Ceci, a young scammer. When Pablo pretends to be in a rock band with Ramón to impress a former schoolmate, Ceci adds up to the lie and says she is their manager.
2022-03-11
8.7
Episódio 2
0h 29min
Episódio 2
Episódio 2
The band now has a name, an Instagram account and their first gig. They just need to learn how to play.
2022-03-11
8.7
Episódio 3
0h 33min
Episódio 3
Episódio 3
Pablo gets his first job, Ramón surrenders to forbidden love, and Ceci discovers a mysterious cult of taxi drivers.
2022-03-11
8.7
Episódio 4
0h 32min
Episódio 4
Episódio 4
Ramón becomes friends with a national rock legend, and The Feeble-Minded get an invitation to party at his place. This could be the best night of their lives... or the worst.
2022-03-11
8.7
Episódio 5
0h 32min
Episódio 5
Episódio 5
Pablo starts a hardcore band without telling The Feeble-Minded and tries to lead a double life.
2022-03-11
8.7
Episódio 6
0h 36min
Episódio 6
Episódio 6
Ceci decides to change her life, Pablo finds inspiration in a family secret, and Ramón is a powerful woman's object of desire.
2022-03-11
8.7
Episódio 7
0h 34min
Episódio 7
Episódio 7
During the shooting of The Feeble-Minded's first video, lies and deception come out, and the friendship between Pablo, Ramón and Ceci reaches a breaking point.
2022-03-11
8.7
Episódio 8
0h 38min
Episódio 8
Episódio 8
The band splits up and they all go separate ways. Pablo tries to launch a solo career, Ceci is reunited with her past and Ramón makes a new friend. Is this the end of The Feeble-Minded?
2022-03-11
8.7
Episódio 1
0h 25min
Episódio 1
Episódio 1
Dieguito approaches the band by pretending to be Pablo ́s fan but deep inside he intends to push him away and take his place.
2024-09-19
8.7
Episódio 2
0h 31min
Episódio 2
Episódio 2
Seduced by Romina, Pablo decides to move to a farm occupied by “rollingas” who produce hot dogs. But such business hides something dark. Only Ceci and Ramón can rescue Pablo.
2024-09-19
8.7
Episódio 3
0h 31min
Episódio 3
Episódio 3
Ceci falls in love with Claudio, a small-time con man, and introduces him to Pablo and Ramón. Claudio makes Ramón believe Pablo has been kidnapped to keep all his savings. Ceci discovers the scam and has to decide between her new love and her long-time friends.
2024-09-19
8.7
Episódio 4
0h 29min
Episódio 4
Episódio 4
An unprecedented storm holds everybody prisoner at the bar. Nacho becomes the leader who organizes the responsible use of supplies and Pablo, green with envy, convinces everybody to overthrow him.
2024-09-19
8.7
Episódio 5
0h 27min
Episódio 5
Episódio 5
Pablo meets a group of young musicians who make him feel old. By wearing a make-up mask, he pretends to be younger and gets to be accepted but as he plays live, his plan falls apart.
2024-09-19
8.7
Episódio 6
0h 30min
Episódio 6
Episódio 6
With the band at its peak thanks to the successful hit “Porn and Ice Cream”, Segundo returns accusing them of having copied an eighties song from a whole-wheat-bread brand. On trial, they must defend themselves to avoid going to prison for ten years.
2024-09-19
8.7

Cast

Martín Piroyansky
Martín Piroyansky
Pablo
Sofía Morandi
Sofía Morandi
Ceci
Ignacio Saralegui
Ignacio Saralegui
Ramón
Javier Niklison
Javier Niklison
Claudio

Where Watch

Images

Porn and Ice Cream Poster
Porn and Ice Cream Poster

Detailed Information

General Information

Original Title: Porn and Ice Cream

Creators: Hwang Dong-hyuk

Gender: Comedy,

Seasons: 2

Episodes: 14

Duration: 32-82 min

Classification: 16 anos

Production

Budget: Dados não disponíveis

Revenue: Dados não disponíveis

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/tv/194807

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

PHP com cURL

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

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

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

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