Common/video/v1.1/VideoAbstract

Jump to: navigation, search

VideoAbstract

Contains information about a movie, series, season, or program.

Elements

NameTypeDescription
directors Director [ ] Directors of the movie or TV series.
ids ids IDs for the movie or program that are recognized by Rovi DVDs or Rovi Video.
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

<VideoAbstract>
  <ids>
    <cosmoId>10308390</cosmoId>
    <movieId>V   481689</movieId>
  </ids>
  <title>The Girl With the Dragon Tattoo</title>
  <directors>
    <Director>
      <id>P205616</id>
      <name>Niels Arden Oplev</name>
    </Director>
  </directors>
  <releaseYear>2009</releaseYear>
  <rating>7</rating>
</VideoAbstract>

JSON Response Example

{
   "ids":{
      "cosmoId":"10308390",
      "movieId":"V   481689"
   },
   "title":"The Girl With the Dragon Tattoo",
   "directors":[
      {
         "id":"P205616",
         "name":"Niels Arden Oplev"
      }
   ],
   "releaseYear":"2009",
   "rating":7
}
 
Personal tools