get_upcoming_releases
Retrieve upcoming movie and TV releases from IMDb for specific countries with pagination support to browse entertainment options.
Instructions
Get the upcoming releases from IMDb with pagination. Args: country_code: The country code to get the upcoming releases for. type: The type of the upcoming releases to get. Possible values: "TV", "MOVIE". start: The starting index (0-based) to retrieve releases from. Returns: JSON object containing 5 upcoming releases starting from the specified index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | Yes | ||
| type | Yes | ||
| start | Yes |
Input Schema (JSON Schema)
{
"properties": {
"country_code": {
"title": "Country Code",
"type": "string"
},
"start": {
"title": "Start",
"type": "integer"
},
"type": {
"title": "Type",
"type": "string"
}
},
"required": [
"country_code",
"type",
"start"
],
"type": "object"
}