Reckless (2014)

A gorgeous Yankee litigator and a charming southern attorney must hide their intense mutual attraction as a police sex scandal threatens to tear the city of Charleston, S.C. apart.

2014
Drama
Crime
7.0
/dPhc4IpzLTV7nu663kAhhQQr0UP.jpg Poster

Episodes

Episódio 1
0h 43min
Episódio 1
Episódio 1
Courtroom adversaries feel an instant romantic attraction in this legal drama, which begins when the newly appointed City Attorney squares off against a defense lawyer in a sex scandal case involving multiple members of the Charleston Police Department.
2014-06-29
8.7
Episódio 2
0h 43min
Episódio 2
Episódio 2
Things take an unexpected violent turn when Jamie and Roy represent opposing sides in a heated custody case. Meanwhile, Roy's feeling conflicted about how to handle the missing footage from the police department sex tape.
2014-07-06
8.7
Episódio 3
0h 43min
Episódio 3
Episódio 3
A judge suggests that Lee Anne accept a settlement offer in an effort to put an end to the scandal that's embroiling the city; at the same time, Jamie and Roy argue opposing sides in a stand-your-ground case.
2014-07-13
8.7
Episódio 4
0h 43min
Episódio 4
Episódio 4
When two football players are accused of killing their coach, Jamie and Roy put aside their differences and work together to clear their names. Meanwhile, Preston begs for Jamie’s forgiveness after she sees his face on the Lee Anne Marcus sex tape.
2014-07-20
8.7
Episódio 5
0h 43min
Episódio 5
Episódio 5
Jamie dedicates herself to clearing the name of a pro bono client wrongfully accused of murder, and enlists Roy’s help with the case. Meanwhile, Knox faces a moral dilemma regarding the Lee Anne Marcus case as he considers running for mayor.
2014-07-27
8.7
Episódio 6
0h 43min
Episódio 6
Episódio 6
Roy agrees to represent his ex-wife’s fiancé in a disputed property deal which may have resulted in murder. Meanwhile, Jamie awaits the results of Lee Anne’s drug test.
2014-08-03
8.7
Episódio 7
0h 43min
Episódio 7
Episódio 7
When an affluent Charleston socialite goes missing after a boating accident, Jamie and Roy face off over the ensuing wrongful death suit brought against the city. Meanwhile, the tension between Jamie and Roy heats up when they share a dance at the Mayor’s ball. Also, Lee Anne finds support from an unlikely ally, as her case is threatened when another woman brings similar charges of sexual harassment against the city.
2014-08-10
8.7
Episódio 8
0h 43min
Episódio 8
Episódio 8
When Roy agrees to defend his high school sweetheart against murder charges, the case threatens his family’s reputation and his position at the law firm. Meanwhile, Lee Anne tries to break things off with Terry once and for all.
2014-08-24
8.7
Episódio 9
0h 43min
Episódio 9
Episódio 9
Roy asks Terry to testify against Lee Anne in an attempt to get her sexual discrimination lawsuit against the police department thrown out of court.
2014-08-30
8.7
Episódio 10
0h 43min
Episódio 10
Episódio 10
Jamie and Roy face off in civil court as Charleston reacts to the Lee Anne Marcus sex tape being leaked to the media. Meanwhile, Knox faces a moral dilemma when he discovers a dirty secret that could derail Joyce Reed’s mayoral campaign.
2014-08-31
8.7
Episódio 11
0h 43min
Episódio 11
Episódio 11
When Vi's ex-husband is accused of medical malpractice, Jamie works to clear his name, only to find out that a relationship with a former patient could put his entire career at risk. Meanwhile, jury selection in Lee Anne's case is complicated by a possible planted juror. Also, the love triangle between Jamie, Roy and Preston gets even hotter.
2014-09-07
8.7
Episódio 12
0h 43min
Episódio 12
Episódio 12
Jamie and Roy are on opposite sides of the biggest courtroom battle of their careers when Lee Anne’s sexual harassment case against the Charleston Police Department finally goes to trial and a verdict is rendered. Meanwhile, Jamie and Roy decide whether or not they are ready to take the next step in their relationship.
2014-09-13
8.7
Episódio 13
0h 43min
Episódio 13
Episódio 13
Jamie and Roy are on opposite sides of the biggest courtroom battle of their careers when Lee Anne’s sexual harassment case against the Charleston Police Department finally goes to trial and a verdict is rendered. Meanwhile, Jamie and Roy decide whether or not they are ready to take the next step in their relationship.
2014-09-13
8.7

Cast

Kim Wayans
Kim Wayans
Vi Briggs
Michael Gladis
Michael Gladis
Holland Knox
Cam Gigandet
Cam Gigandet
Roy Rayder
Gregory Harrison
Gregory Harrison
Dec Fortnum
Shawn Hatosy
Shawn Hatosy
Terry McCandless
Adam Rodriguez
Adam Rodriguez
Preston Cruz
Anna Wood
Anna Wood
Jamie Horn
Georgina Haig
Georgina Haig
Lee Anne Marcus

Where Watch

Images

Reckless Poster
Reckless Poster

Detailed Information

General Information

Original Title: Reckless

Creators: Hwang Dong-hyuk

Gender: Drama, Crime,

Seasons: 1

Episodes: 13

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

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

PHP com cURL

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

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

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

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