All You Need (2021)

All You Need is a Dramady series about four gay men in Berlin, searching for love and security in the age of Grindr.

2021
6.0
/8KB4wLp5Pkd9y1FZhu0TxZvIEmh.jpg Poster

Episodes

Parade
0h 33min
Episódio 1
Parade
Vince and Levo are not only best friends, but have also lived together in a shared flat in Kreuzberg for years. But that's over now: Levo moves in with his boyfriend Tom, who has only recently come out. When Vince is partying in a queer club, he meets the taciturn fitness coach Robbie. Vince lets himself into the mysterious stranger and has to decide whether he wants to give up his freedom for Robbie. Tom discovers and enjoys the feeling of freedom after his long marriage, while Levo arranges the common house and thinks about children.
2021-05-07
8.7
The Guests
0h 26min
Episódio 2
The Guests
In order to boost the household budget, Vince rents out the free room to a good-looking Israeli via a vacation rental portal. Robbie is seething with jealousy, also because he realizes that he cannot keep up with the linguistically gifted and educated Vince. Meanwhile, Levo asks Tom to finally meet his son Nick.
2021-05-07
8.7
Damals
0h 23min
Episódio 3
Damals
One year ago. Tom and Levo meet secretly in a hotel. Tom realizes his homosexuality. While Levo falls seriously in love with him, he first has to free himself and initially sees no future in Levo.
2021-05-07
8.7
Identity
0h 25min
Episódio 4
Identity
Vince and Robbie have different views of a relationship. Vince hesitates when Robbie tries to kiss him in public. Vince makes it clear to him that he is not only gay, but also black and struggling with other people's prejudices. It comes to an argument. Levo takes Tom to a fetish shop for the first time and Tom asks him if he would also be open to other constellations.
2021-05-07
8.7
Under Water
0h 24min
Episódio 5
Under Water
Levo's garden party should be a complete success. Everyone has come, even Levo's parents and sister. Tom and Vince avoid each other. When Vince tries to speak to Tom, there is an unplanned chain of moments, the consequences of which call the friendship of all four men into question.
2021-05-07
8.7
Escape from the Front
0h 25min
Episódio 1
Escape from the Front
Vince is lonely and desperate. Because of his infidelity with Tom, he not only lost the love of his life, but also his best friend. While his "ex" Robbie ghosts him completely, he experiences the contempt of Levo, who sleeps on Sarina's couch. Levo tries to take his mind off his breakup pain at a sex party and makes an unexpected acquaintance.
2022-04-27
8.7
Puppy Love
0h 26min
Episódio 2
Puppy Love
Vince gets a new roommate: Simon, Sarina's smart brother. Simon decides to take Vince's heartache and exam stress away with a night at the club. Levo also wants to put the pain of separation behind him. He has met Andreas, the coach of a queer rugby team, and persuades Robbie to join him at practice.
2022-04-27
8.7
Still Water
0h 25min
Episódio 3
Still Water
The clique meets on a trip to the lake - more or less by chance. Sarina, Levo and Robbie are surprised that Simon is bringing his roommate Vince. Vince doesn't feel comfortable with the unprepared reunion either. He would like to go. However, Simon insists that everyone stay and pull themselves together for a day.
2022-04-27
8.7
Date Night
0h 27min
Episódio 4
Date Night
For Vince, there are more important things than his studies: his "ex" Robbie, who accepted an invitation to dinner. While Vince hopes for a fresh start, Robbie discovers his passion for rugby. However, in Andreas' queer team, his talent sparks rivalry. Levo, who is freeing himself from the pain of his separation, is in demand as a comforter for Sarina's soul.
2022-04-28
8.7
No Comeback
0h 28min
Episódio 5
No Comeback
After Robbie's violent outburst in rugby, Vince now sees his uncontrolled side. That's why Vince wants to know more about his "ex" and show that he still stands by him. In fact, Robbie agrees to a trip into his past. The two drive to Robbie's hometown, where he went to school and where his parents live, who don't know anything about his coming out.
2022-04-28
8.7
Happy Birthday
0h 27min
Episódio 6
Happy Birthday
Sarina is happy to celebrate her 30th birthday with her adopted family. It didn't necessarily have to be the chic house by the lake that her brother Simon opened up as a party location. The main thing is that everyone is there and doesn't argue. Even Vince and Robbie grow closer. However, the good mood is over when an unexpected guest appears in the room.
2022-04-28
8.7

Where Watch

Images

All You Need Poster
All You Need Poster

Detailed Information

General Information

Original Title: All You Need

Creators: Hwang Dong-hyuk

Gender:

Seasons: 2

Episodes: 11

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/123424

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

PHP com cURL

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

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

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

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