Skip to content

Latest commit

 

History

History
104 lines (58 loc) · 3.18 KB

CollectionsApi.md

File metadata and controls

104 lines (58 loc) · 3.18 KB

CollectionsApi

All URIs are relative to https://api.themoviedb.org/3

Method HTTP request Description
get_collection_details get /collection/{collection_id} Get Details
get_collection_images_list get /collection/{collection_id}/images Get Images
get_collection_translations_list get /collection/{collection_id}/translations Get Translations

get_collection_details

crate::models::CollectionObject get_collection_details(collection_id, language) Get Details

Get collection details by id.

Parameters

Name Type Description Required Notes
collection_id i32 Required
language String Pass a ISO 639-1 value to display translated data for the fields that support it. [default to <>]

Return type

crate::models::CollectionObject

Authorization

api_key

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_collection_images_list

crate::models::Images get_collection_images_list(collection_id, language) Get Images

Get the images for a collection by id.

Parameters

Name Type Description Required Notes
collection_id i32 Required
language String Pass a ISO 639-1 value to display translated data for the fields that support it. [default to <>]

Return type

crate::models::Images

Authorization

api_key

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_collection_translations_list

crate::models::TranslationsList get_collection_translations_list(collection_id, language) Get Translations

Get the list translations for a collection by id.

Parameters

Name Type Description Required Notes
collection_id i32 Required
language String Pass a ISO 639-1 value to display translated data for the fields that support it. [default to <>]

Return type

crate::models::TranslationsList

Authorization

api_key

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]