Pledge This! (2007)

At popular South Beach University, filthy rich super-snob Victoria English is the absolute queen of leading Greek student club, Sigma Sigma. In order to achieve her crowning ambition, winning FHM Magazines annual best sorority, she must recruit atypical Sigmies to fulfill the diversity criteria. Ambitious sycophant pledge Kristen Haas helps her attract losers (too poor, ugly, unfashionable), who are cruelly put through excruciating hazing, without intent to actually enroll them. Gloria, the brightest and most assertive pledge, wins the heart of Derek baby Dick, Victorias ideal, yet constantly abused boyfriend, whose bitch-addiction is cured by this alternative lover. Together they lead the revolt of the not-even-nerds.

2007
Comedy
2.0
/osgpqqUkQTX8RXTEpCssTOlJCs5.jpg Poster

Cast

Geoffrey Arend
Geoffrey Arend
Dax / Mother / Photographer
Paula Garcés
Paula Garcés
Gloria Torrez
Eugenio Derbez
Eugenio Derbez
Jose
E. G. Daily
E. G. Daily
Catherine Johnson
Simon Rex
Simon Rex
Derek
Lin Shaye
Lin Shaye
Miss Prin
Carmen Electra
Carmen Electra
Herself
Preston Lacy
Preston Lacy
Randy
Rick Overton
Rick Overton
Janitor Jones
Sofía Vergara
Sofía Vergara
FHM Hostess
Noureen DeWulf
Noureen DeWulf
Poo Poo
Jennifer Elise Cox
Jennifer Elise Cox
VJ Outside FHM Party
Greg Cipes
Greg Cipes
Reed
Bianca Lawson
Bianca Lawson
Monique
Taylor Negron
Taylor Negron
Professor Milchik
Kerri Kenney
Kerri Kenney
Kathy Johnson
Alexis Thorpe
Alexis Thorpe
Morgan
Sarah Carter
Sarah Carter
Kristen Haas
Allison Weissman
Allison Weissman
Samantha
Keith Hudson
Keith Hudson
Erik
Amanda Aday
Amanda Aday
Maxine Picker
Jasmine Waltz
Jasmine Waltz
Smoking Girl #3
April Florio
April Florio
Gamma Girl
Paris Hilton
Paris Hilton
Victoria English
Diva Zappa
Diva Zappa
Babs Cohen
Holly Valance
Holly Valance
Jessica
Alison MacInnis
Alison MacInnis
Leslie
Julia Lehman
Julia Lehman
Heather
Kyle Richards
Kyle Richards
Lisa
Amanda Rowan
Amanda Rowan
Trista
Dieter Meier
Dieter Meier
Gamsie
Beau Beasley
Beau Beasley
Gay Guy
Rick Najera
Rick Najera
Buford Gomez
Chira Cassel
Chira Cassel
Goth Girl #2
Chad Muska
Chad Muska
MTV Editor
Yvonne Gougelet
Yvonne Gougelet
Smoking Girl #2
Shamron Moore
Shamron Moore
Brenda
Angela Dodson
Angela Dodson
Jenny
Aitch Alberto
Aitch Alberto
Boyfriend
Raul de Molina
Raul de Molina
Older Catering Guy
Brooke Newton
Brooke Newton
Hot Chick
Nicky Hilton
Nicky Hilton
Nicky
Athena Stamos
Athena Stamos
SBU Student
Vitaliy Versace
Vitaliy Versace
Boyfriend

Images

Pledge This! Poster
Pledge This! Poster

Detailed Information

General Information

Original Title: Pledge This!

Creators: Hwang Dong-hyuk

Gender: Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $8,300,000.00

Revenue: $1,751,460.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/19213

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

PHP com cURL

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

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

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

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