# 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}`&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://knowledgebase.fabricdata.com/origin/example-queries.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
