Common/movie/v1.1/MovieAbstract

Jump to: navigation, search

MovieAbstract

Contains information about a movie.

Elements

NameTypeDescription
directors Director [ ] Directors of the movie or TV series.
ids ids All of the IDs that are recognized by the API for a movie. The possible IDs are:
  • cosmoId
  • movieId
rating integer An editorially assigned rating of the movie from 0 to 9, where 0 is no rating and higher numbers indicate a higher rating.
releaseYear string Year the movie was released.
title string Full title of the movie.

XML Response Example

<MovieAbstract>
  <ids>
    <cosmoId i:nil="true" />
    <movieId>V 88270</movieId>
  </ids>
  <title>The Crowded Sky</title>
  <directors>
    <Director>
      <id>P106323</id>
      <name>Joseph Pevney</name>
    </Director>
  </directors>
  <releaseYear>1960</releaseYear>
  <rating>4</rating>
</MovieAbstract>

JSON Response Example

{
  "ids":{
    "cosmoId":null,
    "movieId":"V   88270"
  },
  "title":"The Crowded Sky",
  "directors":[
    {
      "id":"P106323",
      "name":"Joseph Pevney"
    }
  ],
  "releaseYear":"1960",
  "rating":4
}
 
Personal tools