Quick Start Guide (subscription)

Quick Start Guide (free)
Our two quick start guides show you step-by-step how to get the data and how to put a trailer on your site. 

Sign up for a developer ID. It's Free!

( * Subscription Required)


Documentation Articles



ID Mapping Tables

Jason Schneid - Client Services Representative | Jul 13, 2012

Mapping Table can be very useful when matching IVA Data to data in your own database.  Here is a list of mapping tables that are available through our OData API and how to get them.  These mapping tables will return the IVA Published ID, Movie Title and the following corresponding ID’s

  • IMDB - 12
  • Amazon ASIN -13
  • UPC - 15
  • iTunes - 17
  • ISBN - 19
  • NETFLIX -39
  • VUDU - 40
  • HULU - 42
  • Freebase - 46
  • Barnes & Noble - 49

How to get these maps:

You can query the OData API for the ID Type that you want a map for.  Since the OData API only returns 500 records at a time you will have to implement some paging as shown in the example below.

Example:  Getting an IVA Published ID to IMDB Map skipping the first 500 records and getting the next 500.

Linq: (From i In IdMaps Where i.IdType = 12 Select i).skip(500).take(500)

URL: http://api.internetvideoarchive.com/1.0/DataService/IdMaps()?$filter=IdType eq 12&$skip=500&$top=500&Developerid={yourID}