The SpongeBob Movie: Sponge Out of Water (2015)

Evil pirate Burger Beard is in search of the final page of a magical book that makes any evil plan he writes in it come true, but the final page happens to be the Krabby Patty secret formula. When Burger Beard endangers Bikini Bottom, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton must embark on a quest to retrieve the recipe and save their city...a quest that takes them to the surface world and transforms them into superheroes.

2015
Family
Fantasy
Adventure
Animation
Comedy
6.0
/60kq0Ew6oNNQaMcXvHhTTne5WZC.jpg Poster

Cast

Tom Kenny
Tom Kenny
SpongeBob / Gary / Agreeable Mob Member / Waffle (voice)
Clancy Brown
Clancy Brown
Mr. Krabs (voice)
Rodger Bumpass
Rodger Bumpass
Doctor / Squidward / Angry Mob Member #2 / Doughnut / Squidasaurus Rex (voice)
Bill Fagerbakke
Bill Fagerbakke
Patrick / Male Fish / Eager Customer (voice)
Carolyn Lawrence
Carolyn Lawrence
Sandy (voice)
Mr. Lawrence
Mr. Lawrence
Plankton / Plankton Robot / News Anchor Fish / Mob Member (voice)
Thomas F. Wilson
Thomas F. Wilson
Angry Customer #1 (voice)
Jill Talley
Jill Talley
Karen (the Computer Wife) / Harold’s Wife / Ice Cream Cone #2 (voice)
Lori Alan
Lori Alan
Pearl (voice)
Mary Jo Catlett
Mary Jo Catlett
Mrs. Puff (voice)
Chip Lane
Chip Lane
Customer
Dean Neistat
Dean Neistat
ND Beach Goer
Nolan North
Nolan North
Seagull / Dead Parrot / Pigeon Cabbie (voice)
Cree Summer
Cree Summer
Seagull (voice)
Frank Welker
Frank Welker
Squidasaurus Rex (voice) (uncredited)
Dee Bradley Baker
Dee Bradley Baker
Sandals / Customer #1 / Fish on Bubble / Perch Perkins / Angry Fish / Maple Syrup Jar / Waffle / Ice Cream Cone #1 / Furballs / Giant Cute Kitty / Rainbow / Spotlight Guard / Angry Guard #1 / Tough Mob Member (voice)
Antonio Banderas
Antonio Banderas
Burger Beard
Rob Paulsen
Rob Paulsen
Seagull (voice)
Riki Lindhome
Riki Lindhome
Popsicle (voice)
Mike Benitez
Mike Benitez
Nut Vendor
Carlos Alazraqui
Carlos Alazraqui
Seagull / Dead Parrot (voice)
Kevin Michael Richardson
Kevin Michael Richardson
Seagull (voice)
Mark Fite
Mark Fite
Customer #2 (voice)
Tim Conway
Tim Conway
Seagull (voice)
Brody Rose
Brody Rose
Kicking Boy
Eric Bauza
Eric Bauza
Seagull (voice)
Kate Micucci
Kate Micucci
Popsicle (voice)
April Stewart
April Stewart
Seagull (voice)
Eddie Deezen
Eddie Deezen
Seagull (voice)
Billy West
Billy West
Seagull (voice)
Noah Lomax
Noah Lomax
Mikey
Jesica Ahlberg
Jesica Ahlberg
Tanning Woman
Eamon Sheehan
Eamon Sheehan
Young Father
Matt Berry
Matt Berry
Bubbles (voice)
Sirena Irwin
Sirena Irwin
Computer Voice / Shocked Mob Member (voice)
Marian Green
Marian Green
ND Beach Goer
Stephen Hillenburg
Stephen Hillenburg
Baby in Stroller (voice)
Lisa Datz
Lisa Datz
Amy
Kron Moore
Kron Moore
Woman on Sidewalk
Meredith Jackson
Meredith Jackson
Mother with Cone
Lillian Ellen Jones
Lillian Ellen Jones
Sandcastle Girl
Paul Tibbitt
Paul Tibbitt
Kyle / Helpful Angry Mob Member (voice)
Nina Repeta
Nina Repeta
Woman with Stroller
Brick Jackson
Brick Jackson
Customer
Dane Northcutt
Dane Northcutt
Nut Vendor Customer
Ashley Nicole Hudson
Ashley Nicole Hudson
ND Beach Goer
Amy Lynn Tuttle
Amy Lynn Tuttle
ND Beach Goer
Lloyd Ahlquist
Lloyd Ahlquist
Surfer Dude (voice)
Peter Shukoff
Peter Shukoff
Surfer Dude
Caspar Lee
Caspar Lee
Seagull #2 (uncredited)

Images

The SpongeBob Movie: Sponge Out of Water Poster
The SpongeBob Movie: Sponge Out of Water Poster

Detailed Information

General Information

Original Title: The SpongeBob Movie: Sponge Out of Water

Creators: Hwang Dong-hyuk

Gender: Family, Fantasy, Adventure, Animation, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $74,000,000.00

Revenue: $325,186,032.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/228165

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

PHP com cURL

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

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

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

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