Example Queries

Changed Data Since

Retrieve all programs that have changed since a certain date-time.

  • Filter results where ProgramTypes=Movie,Show

  • Include extra data: Includes=Videos,Releases

  • Paging: Skip=0, Take=10

https://ee.iva-api.com/api/entertainment/Search/?Skip=0 &Take=10 &ModifiedRecordsSince=2018-06-11%2004:05%20PM &Includes=Releases,Videos &ProgramTypes=Movie,Show &subscription-key={YourKey}

Movies Available at Fandango

Retrieve all programs available on Fandango.

  • Filter results where ProgramTypes=Movie,Show

  • Include extra data: Includes=Videos,Images,Descriptions

  • Paging: Skip=0, Take=10

https://ee.iva-api.com/api/entertainment/Search/?Skip=0 &Take=10 &Providers=FandangoMovies &Includes=Videos,Images,Descriptions &subscription-key={YourKey}

Movies Coming Soon to Theaters with Video

Retrieve all movies with more than one video with a Theatrical Wide Release in US greater than a specific date.

  • Filter results where ProgramTypes=Movie and ReleaseTypes=Theatrical_Wide_Release and HasVideo=true

  • Include extra data: Includes=Videos,Images,Descriptions

  • Paging: Skip=0, Take=10

https://ee.iva-api.com/api/entertainment/Search/?Skip=0 &Take=10 &ProgramTypes=Movie &ReleaseTypes=Theatrical_Wide_Release &ReleaseCountries=US &ReleaseDateRange_Start=2018-07-12 &Includes=Videos,Images,Descriptions &HasVideo=true &subscription-key={YourKey}

Get all seasons and episodes for a Show

Use the ShowId returned in a Show to get seasons and episodes. This will take at least 2 additional requests.

Step 1: Get a Show.

  • Ids = Show/850

  • Paging: Skip=0, Take=1

https://ee.iva-api.com/api/entertainment/Search/?Skip=0 &Take=1 &Ids=Show/850 &subscription-key={YourKey}

Step 2: Using the ShowId, get the seasons and episodes.

  • ShowId = Show/Id

  • ProgramTypes = Season,Episode.

https://ee.iva-api.com/api/entertainment/Search/?Skip=0 &Take=50 &ShowId=Show/850 &subscription-key={YourKey}

Last updated