GET
/
3
/
movie
/
upcoming
curl --request GET \
  --url https://api.themoviedb.org/3/movie/upcoming \
  --header 'Authorization: Bearer <token>'
{
  "dates": {
    "maximum": "2025-01-15",
    "minimum": "2024-12-25"
  },
  "page": 1,
  "results": [],
  "total_pages": 1,
  "total_results": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

language
string

This represents the language.

Example:

"en"

page
string

This represents the page number.

Example:

"1"

region
string

This represents the country code. E.g., ISO-3166-1 code

Example:

"ISO_3166-2"

Response

200 - application/json

Upcoming

The response is of type object.