CONFIGURATION
Details
Endpoints
- AUTHENTICATION
- ACCOUNT
- CERTIFICATIONS
- CHANGES
- COLLECTIONS
- COMPANY
- CONFIGURATION
- CREDIT
- DISCOVER
- FIND
- GENRES
- GUEST SESSIONS
- KEYWORDS
- LISTS
- MOVIE LISTS
- MOVIES
- REVIEWS
- NETWORKS
- PEOPLE LIST
- PEOPLE
- SEARCH
- TRENDING
- TV SERIES LIST
- TV SERIES
- TV SEASONS
- TV EPISODES
- TV EPISODE GROUP
- WATCH PROVIDERS
CONFIGURATION
Details
This endpoint query the API configuration details.
GET
/
3
/
configuration
curl --request GET \
--url https://api.themoviedb.org/3/configuration \
--header 'Authorization: Bearer <token>'
{
"change_keys": [
"adult",
"air_date",
"also_known_as",
"alternative_titles",
"biography",
"birthday",
"budget",
"cast",
"certifications",
"character_names",
"created_by",
"crew",
"deathday",
"episode",
"episode_number",
"episode_run_time",
"freebase_id",
"freebase_mid",
"general",
"genres",
"guest_stars",
"homepage",
"images",
"imdb_id",
"languages",
"name",
"network",
"origin_country",
"original_name",
"original_title",
"overview",
"parts",
"place_of_birth",
"plot_keywords",
"production_code",
"production_companies",
"production_countries",
"releases",
"revenue",
"runtime",
"season",
"season_number",
"season_regular",
"spoken_languages",
"status",
"tagline",
"title",
"translations",
"tvdb_id",
"tvrage_id",
"type",
"video",
"videos"
],
"images": {
"backdrop_sizes": [
"w300",
"w780",
"w1280",
"original"
],
"base_url": "http://image.tmdb.org/t/p/",
"logo_sizes": [
"w45",
"w92",
"w154",
"w185",
"w300",
"w500",
"original"
],
"poster_sizes": [
"w92",
"w154",
"w185",
"w342",
"w500",
"w780",
"original"
],
"profile_sizes": [
"w45",
"w185",
"h632",
"original"
],
"secure_base_url": "https://image.tmdb.org/t/p/",
"still_sizes": [
"w92",
"w185",
"w300",
"original"
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
details
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/configuration \
--header 'Authorization: Bearer <token>'
{
"change_keys": [
"adult",
"air_date",
"also_known_as",
"alternative_titles",
"biography",
"birthday",
"budget",
"cast",
"certifications",
"character_names",
"created_by",
"crew",
"deathday",
"episode",
"episode_number",
"episode_run_time",
"freebase_id",
"freebase_mid",
"general",
"genres",
"guest_stars",
"homepage",
"images",
"imdb_id",
"languages",
"name",
"network",
"origin_country",
"original_name",
"original_title",
"overview",
"parts",
"place_of_birth",
"plot_keywords",
"production_code",
"production_companies",
"production_countries",
"releases",
"revenue",
"runtime",
"season",
"season_number",
"season_regular",
"spoken_languages",
"status",
"tagline",
"title",
"translations",
"tvdb_id",
"tvrage_id",
"type",
"video",
"videos"
],
"images": {
"backdrop_sizes": [
"w300",
"w780",
"w1280",
"original"
],
"base_url": "http://image.tmdb.org/t/p/",
"logo_sizes": [
"w45",
"w92",
"w154",
"w185",
"w300",
"w500",
"original"
],
"poster_sizes": [
"w92",
"w154",
"w185",
"w342",
"w500",
"w780",
"original"
],
"profile_sizes": [
"w45",
"w185",
"h632",
"original"
],
"secure_base_url": "https://image.tmdb.org/t/p/",
"still_sizes": [
"w92",
"w185",
"w300",
"original"
]
}
}