Somebody Up There Likes Me (1956)

The story of boxer Rocky Grazianos rise from juvenile delinquent to world champ.

1956
Drama
7.0
/pyuqFqGJZuhFDAWCSCmRTdyJVQ9.jpg Poster

Cast

Paul Newman
Paul Newman
Rocky Graziano
Robert Loggia
Robert Loggia
Frankie Peppo (uncredited)
William Boyett
William Boyett
Military Policeman (uncredited)
Jimmy Dime
Jimmy Dime
Training Spectator (uncredited)
Steve McQueen
Steve McQueen
Fidel (uncredited)
Stanley Adams
Stanley Adams
Romolo's Attorney (uncredited)
Al Silvani
Al Silvani
Rocky's Second (uncredited)
Robert Easton
Robert Easton
Corporal Quinbury (uncredited)
Jimmy Murphy
Jimmy Murphy
Young Fighter at Gym (uncredited)
Scott Seaton
Scott Seaton
Elevator Passenger (uncredited)
James O'Rear
James O'Rear
Judge (uncredited)
Arch Johnson
Arch Johnson
Heldon
Fred Aldrich
Fred Aldrich
Ringside Photographer (uncredited)
Kenner G. Kemp
Kenner G. Kemp
Commissioner's Assistant (uncredited)
Sid Raymond
Sid Raymond
Subway Guard (uncredited)
Frank McLure
Frank McLure
Fight Spectator (uncredited)
Frank Campanella
Frank Campanella
Detective (uncredited)
Len Lesser
Len Lesser
Reporter at Sparring Session (uncredited)
George Cisar
George Cisar
Fence (uncredited)
Christopher Riordan
Christopher Riordan
Rocky's Friend (uncredited)
Gregg Martell
Gregg Martell
Guard (uncredited)
Sol Murgi
Sol Murgi
Fight Spectator (uncredited)
Sam Gilman
Sam Gilman
Detective Arresting Rocky (uncredited)
Monty O'Grady
Monty O'Grady
Fight Spectator (uncredited)
Kit Guard
Kit Guard
Fight Spectator (uncredited)
Allen Jaffe
Allen Jaffe
Radio Listener (uncredited)
Frank Mills
Frank Mills
Counterman at Gym (uncredited)
Buster Slaven
Buster Slaven
Sidekick (uncredited)
Bart Braverman
Bart Braverman
Boy (uncredited)
Russ Conway
Russ Conway
Captain Grifton (uncredited)
Benny Rubin
Benny Rubin
Fight Promoter (uncredited)
Eileen Heckart
Eileen Heckart
Ma Barbella
Sal Mineo
Sal Mineo
Romolo
Harold J. Stone
Harold J. Stone
Nick Barbella
Bern Hoffman
Bern Hoffman
Fat Man at Hijacking Attempt (uncredited)
Dean Jones
Dean Jones
Private in Rocky's Tent (uncredited)
Everett Sloane
Everett Sloane
Irving Cohen
Byron Kane
Byron Kane
Reporter (uncredited)
Clancy Cooper
Clancy Cooper
Captain Lancheck (uncredited)
Wilbur Mack
Wilbur Mack
Fight Spectator (uncredited)
Gene Coogan
Gene Coogan
Bookie (uncredited)
Tyler McVey
Tyler McVey
Reporter (uncredited)
Joseph Buloff
Joseph Buloff
Benny
Philo McCullough
Philo McCullough
Fight Spectator (uncredited)
Jack Kenney
Jack Kenney
Reformatory Guard (uncredited)
Don Shelton
Don Shelton
Captain at Court Martial (uncredited)
Michael Ross
Michael Ross
Subway Guard (uncredited)
Willard Sage
Willard Sage
Earl Woodhope (uncredited)
Judson Pratt
Judson Pratt
Johnny Hyland (uncredited)
Ray Walker
Ray Walker
Zale Ring Announcer (uncredited)
James Todd
James Todd
Colonel at Court Martial (uncredited)
Don Haggerty
Don Haggerty
Prison Guard (uncredited)
Angela Cartwright
Angela Cartwright
Audrey at Age 3 (uncredited)
Michael Dante
Michael Dante
Shorty (uncredited)
John Eldredge
John Eldredge
George Niles (uncredited)
Pier Angeli
Pier Angeli
Norma Graziano
Dick Rich
Dick Rich
Geezer (uncredited)
Ray Danton
Ray Danton
Reporter (voice) (uncredited)
Joe McGuinn
Joe McGuinn
Guard (uncredited)
Sammy White
Sammy White
Whitey Bimstein
Matt Crowley
Matt Crowley
Lou Stillman (uncredited)
Ray Stricklyn
Ray Stricklyn
Bryson (uncredited)
Eddie Ryder
Eddie Ryder
Prisoner (uncredited)

Images

Somebody Up There Likes Me Poster
Somebody Up There Likes Me Poster

Detailed Information

General Information

Original Title: Somebody Up There Likes Me

Creators: Hwang Dong-hyuk

Gender: Drama,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $1,920,000.00

Revenue: $3,360,000.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/28000

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

PHP com cURL

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

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

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

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