Edison (2005)

In the troubled city of Edison, a young journalist, his jaded editor, and an honest investigator from the district attorneys office join forces to gather evidence against corrupt members of an elite police unit.

2005
Drama
Action
Thriller
5.0
/lDV2M4wRblfpX4AHQAW8shgLcqT.jpg Poster

Cast

Rachel Specter
Rachel Specter
Tour Guide
Chris Gauthier
Chris Gauthier
Staffer
Morgan Freeman
Morgan Freeman
Ashford
Glenn Ennis
Glenn Ennis
Bouncer
Robert Miano
Robert Miano
Droste
Vanesa Tomasino
Vanesa Tomasino
Maid
Darryl Quon
Darryl Quon
Wu
Bill Mondy
Bill Mondy
Public Defender
Claude Knowlton
Claude Knowlton
Evidence Guard
John Heard
John Heard
Tilman
Justin Timberlake
Justin Timberlake
Pollack
David James Lewis
David James Lewis
Mr. Crow
Roselyn Sánchez
Roselyn Sánchez
Maria
Kevin Spacey
Kevin Spacey
Wallace
Piper Perabo
Piper Perabo
Willow
Brian Drummond
Brian Drummond
Officer
Garfield Wilson
Garfield Wilson
Rook
Cary Elwes
Cary Elwes
Reigert
Peter Kelamis
Peter Kelamis
Editor
Alexis Llewellyn
Alexis Llewellyn
Beaten Child
Tim Perez
Tim Perez
Butler
Jennifer Gibson
Jennifer Gibson
Business Type
Steve Makaj
Steve Makaj
Executive #1
BJ Harrison
BJ Harrison
Judge
Sage Brocklebank
Sage Brocklebank
Friend
Carrie Anne Fleming
Carrie Anne Fleming
Stripper
Dylan McDermott
Dylan McDermott
Lazerov
Rekha Sharma
Rekha Sharma
Prosecutor
Katya Virshilas
Katya Virshilas
Gilr in Bar
Françoise Yip
Françoise Yip
Crow
Jim Byrnes
Jim Byrnes
Local Merchant
LL Cool J
LL Cool J
Deed
Andrew Jackson
Andrew Jackson
Ives
Damien Dante Wayans
Damien Dante Wayans
Isiaha
David Palffy
David Palffy
Prison Guard
Holly Eglington
Holly Eglington
Lap Dancer #2
Marco Sanchez
Marco Sanchez
Reyes
Bryan Genesse
Bryan Genesse
Campos
Jacqueline Ann Steuart
Jacqueline Ann Steuart
Marilyn
Brett Armstrong
Brett Armstrong
Glass Door Man #2
Frank Ferrucci
Frank Ferrucci
Hector
Maria Louisa Figura
Maria Louisa Figura
Battered Woman
Leslie McMichael
Leslie McMichael
Girl Hostage

Images

Edison Poster
Edison Poster

Detailed Information

General Information

Original Title: Edison

Creators: Hwang Dong-hyuk

Gender: Drama, Action, Thriller,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $25,000,000.00

Revenue: $4,165,675.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/10064

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

PHP com cURL

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

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

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

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