Dogma (1999)

An abortion clinic worker with a special heritage is called upon to save the existence of humanity from being negated by two renegade angels trying to exploit a loophole and reenter Heaven.

1999
Fantasy
Adventure
Comedy
6.0
/cTrKNN7eYmb28aPuTE788yqpVwK.jpg Poster

Cast

Matt Damon
Matt Damon
Loki
Ben Affleck
Ben Affleck
Bartleby
Matthew Maher
Matthew Maher
Bartender
Kevin Smith
Kevin Smith
Silent Bob
Jason Mewes
Jason Mewes
Jay
King Mustafa Obafemi
King Mustafa Obafemi
Kane
Ethan Suplee
Ethan Suplee
Norman (voice)
Salma Hayek Pinault
Salma Hayek Pinault
Serendipity
Alan Rickman
Alan Rickman
Metatron
Chris Rock
Chris Rock
Rufus
Jeff Anderson
Jeff Anderson
Gun Salesman
Jason Lee
Jason Lee
Azrael
George Carlin
George Carlin
Cardinal Glick
Mark Joy
Mark Joy
Whitland
Brian Quinn
Brian Quinn
Man Holding Mooby Figurine in Airport (uncredited)
Janeane Garofalo
Janeane Garofalo
Liz
Scott Mosier
Scott Mosier
Smooching Seaman
Ben Cain
Ben Cain
Gangster #1
Brian O'Halloran
Brian O'Halloran
Grant Hicks
Linda Fiorentino
Linda Fiorentino
Bethany
Bud Cort
Bud Cort
John Doe Jersey
Guinevere Turner
Guinevere Turner
Bus Station Attendent
Walt Flanagan
Walt Flanagan
Protestor #2
Bryan Johnson
Bryan Johnson
Protestor #1
Alanis Morissette
Alanis Morissette
God
Jared Pfennigwerth
Jared Pfennigwerth
Stygian Triplet
Betty Aberlin
Betty Aberlin
Nun
Javon Johnson
Javon Johnson
Gangster #3
Kitao Sakurai
Kitao Sakurai
Stygian Triplet
Barret Hackney
Barret Hackney
Stygian Triplet

Images

Dogma Poster
Dogma Poster

Detailed Information

General Information

Original Title: Dogma

Creators: Hwang Dong-hyuk

Gender: Fantasy, Adventure, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $10,000,000.00

Revenue: $33,535,478.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/1832

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

PHP com cURL

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

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

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

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