Data/descriptor-api/v1.1/descriptor/movie-genres

Jump to: navigation, search

Descriptor/MovieGenres

Returns the movie genres and subgenres recognized by Rovi DVDs.

Abbreviations appended to genre and subgenre names indicate the following:

  • [k] — Children's
  • [nf] — Non-fiction
  • [TV] — Television

Syntax

descriptor/moviegenres?apikey=apikey&sig=sig [&include=include] [&format=format] [&country=country] [&language=language]

Request Example 1

Request the list of movie genres.

Request Example 2

Request the list of movie genres with subgenres.

Request Example 3

Request the list of movie genres with subgenres in an XML response.

Request Parameters

Sort none.gif  Click to re-sort

Parameter Required Description
apikey Yes Access code that authorizes your request for data from Rovi.
sig Yes A calculated, 32-hex-digit authorization code. To perform the calculation, execute the MD5 function on the concatenation of the following three ASCII strings:
  • Your API key.
  • The secret key you received with your API key.
  • The Unix time. Unix time is a timestamp supported in most development environments, and is generally defined as the number of seconds since January 1, 1970 00:00:00 GMT.

Express the alpha hex digits as lower case.

Perform the calculation at the time of each request to be sure it's within a five-minute window of the server time. If you're testing the call in a browser, use our online signature generator to perform the calculation.

country No Country the language parameter applies to. The current release of the API supports only US.
format No Format of the returned data: json or xml. The default is JSON.
include No The subgenres request. To include subgenres in the response, add include=subgenres.
language No Language of the response data. This request supports only en (English).

Response

Response Header

ResponseTypeDescription
buildstringThe software release level of the API.
codeintegerHTTP status code. See the status field for the text part of the code.
durationintegerServer processing time in milliseconds. The difference between startTime and endTime.
endTimestringWhen the server sent the response (UTC time).
messagesMessage [ ]Elements of a multiple HTTP response status message.
parametersparametersThe parameters that were included in the request.
serverNamestringName of the server that processed the request.
startTimestringWhen the server received the request (UTC time).
statusstringText part of the HTTP status code, which is shown in the code field.
viewviewSummary of items returned in a list of items.

Response for Descriptor/MovieGenres

ResponseTypeDescription
genres Genre [ ] Movie genres and, if requested, subgenres in each genre.

Response Example 1

Here's the first two genres returned for Request Example 1, which asks for the list of movie genres. This response has been edited to reduce the length and formatted to make it easy to read.
Requested with http://api.rovicorp.com/data/v1.1/descriptor/moviegenres?apikey=apikey&sig=sig.
{
  "status":"ok",
  "code":200,
  "messages":null,
  "build":"1.5.1.9",
  "parameters":{
    "apiKey":"apikey",
    "id":null
  },
  "view":{
    "total":41
  },
  "serverName":"tul1cssw4",
  "startTime":"2011-04-28T23:13:05.4256061Z",
  "endTime":"2011-04-28T23:13:05.4256061Z",
  "duration":0,
  "genres":[
    {
      "id":"D  646",
      "name":"Action",
      "type":"Movie Genre"
    },
    {
      "id":"D  995",
      "name":"Adult",
      "type":"Movie Genre"
    }
  ]
}

Response Example 2

Here's the first genre and first two subgenres returned for Request Example 2, which asks for movie genres with subgenres.
Requested with http://api.rovicorp.com/data/v1.1/descriptor/moviegenres?apikey=apikey&sig=sig&
include=subgenres
.
{
   "status":"ok",
   "code":200,
   "messages":null,
   "build":"1.7.2.5",
   "parameters":{
      "apiKey":"4p1k3y",
      "id":null,
      "include":"subgenres"
   },
   "view":{
      "total":41
   },
   "serverName":"tul1cssw1",
   "startTime":"2011-10-07T01:09:59.7807707Z",
   "endTime":"2011-10-07T01:09:59.7807707Z",
   "duration":0,
   "genres":[
      {
         "id":"D 646",
         "name":"Action",
         "type":"Movie Genre",
         "subgenres":[
            {
               "id":"D 513",
               "name":"Action Comedy",
               "type":"Movie SubGenre"
            },
            {
               "id":"D 509",
               "name":"Action Thriller",
               "type":"Movie SubGenre"
            }
         ]
      }
   ]
}

XML Response Example

Here's the first genre and first two subgenres returned for Request Example 3. The response has been edited to reduce the length.
Requested with http://api.rovicorp.com/data/v1.1/descriptor/moviegenres?apikey=apikey&sig=sig&
include=subgenres&format=xml
.
<MovieGenres xmlns="com.rovicorp.metadataservice" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <status>ok</status>
  <code>200</code>
  <messages i:nil="true"/>
  <build>1.7.2.5</build>
  <parameters>
    <apiKey>4p1k3y</apiKey>
    <id i:nil="true"/>
    <include>subgenres</include>
    <format>xml</format>
  </parameters>
  <view>
    <total>41</total>
  </view>
  <serverName>tul1cssw4</serverName>
  <startTime>2011-10-07T01:14:17.6829635Z</startTime>
  <endTime>2011-10-07T01:14:17.6985884Z</endTime>
  <duration>15</duration>
  <genres>
    <Genre>
      <id>D 646</id>
      <name>Action</name>
      <type>Movie Genre</type>
      <subgenres>
        <subgenre>
          <id>D 513</id>
          <name>Action Comedy</name>
          <type>Movie SubGenre</type>
        </subgenre>
        <subgenre>
          <id>D 509</id>
          <name>Action Thriller</name>
          <type>Movie SubGenre</type>
        </subgenre>
      </subgenres>
    </Genre>
  </genres>
</MovieGenres>


See Also

↑ Top

Personal tools