> ## Documentation Index
> Fetch the complete documentation index at: https://chisa.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Translations

> Translations



## OpenAPI

````yaml api-reference/openapi.json get /3/collection/{{collection_id}}/translations
openapi: 3.0.3
info:
  title: Themoviedb API
  description: >-
    Version 3 (stable) of The Movie Database (TMDB) API offers a concise list of
    available methods for movies, TV shows, actors, and images.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: https://api.themoviedb.org/3
security: []
tags:
  - name: Account
  - name: Authentication
    description: >-
      # How do I generate a session id?


      As outlined in the [getting started
      guide](https://developer.themoviedb.org/docs/getting-started), the basics
      to getting a user authenticated look like this:


      1. **Create a new request token**  

      2. **Get the user to authorize the request token**  

      3. **Create a new session id with the authorized request token**  


      Steps 1 and 3 should be fairly easy to understand, but let's walk through
      each to ensure clarity.


      ## Step 1: Create a request token


      The first step as a developer is to request a new token. This is a
      **temporary token** required to ask the user for permission to access
      their account. This token will automatically expire **after 60 minutes**
      if it's not used.


      ## Step 2: Ask the user for permission


      With a request token in hand, forward your user to the following URL:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}

      ```


      You can also pass this URL a `redirect_to` parameter, like so:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}?redirect_to=http://www.yourapp.com/approved

      ```


      Once the user has approved your request token, they will either be
      redirected to the URL you specified in the `redirect_to` parameter or to
      the `/authenticate/allow` path on TMDB. If they aren't redirected to a
      custom URL, the page will also include an `Authentication-Callback`
      header. This header contains the API call for step #3. You can either
      manually generate it or simply use the one we return.


      ## Step 3: Create a session ID


      By calling the **new session method** with the request token that has been
      approved by the user in Step 2, we will return a **new session_id**. This
      session can now be used to write user data. You should treat this key
      **like a password** and keep it secret.


      ## What about guest sessions?


      A **guest session** can be used to rate movies **without** requiring a
      registered TMDB user account. For more information about how to create a
      guest session, see
      [here](https://developer.themoviedb.org/docs/authentication).
  - name: Certification
  - name: Changes
  - name: Collections
  - name: Companies
  - name: Configuration
  - name: Credits
  - name: Discover
  - name: Find
  - name: Genres
  - name: Guest Session
  - name: Keywords
  - name: List
    description: >-
      ## v3 or v4 list? 😕


      You may have noticed that the a v4 version of our list API exists. While
      these v3 list methods continue to work, all of the new features you can
      see on our website are only available if you switch to the v4 lists.


      **What are some of the improvements in v4?**


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/collection/{{collection_id}}/translations:
    parameters:
      - name: collection_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Collections
      summary: Translations
      description: Translations
      operationId: translations
      responses:
        '200':
          description: Translations
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=13187
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 14:11:43 GMT
            ETag:
              schema:
                type: string
                example: W/"0d223d7560f857f3f57eaf5217e31809"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 65dad5a3f140e1233a6930efcf0d2078.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 5kI3yWjZqaHJ6BP5yeJRlsyrjocVk1fW388Zn0wd2iUV07G6aXXJog==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '11180'
            x-memc-expires:
              schema:
                type: string
                example: '13187'
            x-memc-key:
              schema:
                type: string
                example: 1f6bf2c56c09ce861c3a10471d5109aa
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 591122
                  translations:
                    type: array
                    items:
                      type: object
                      properties:
                        data:
                          type: object
                          properties:
                            homepage:
                              type: string
                              example: ''
                            overview:
                              type: string
                              example: 영화 해적 시리즈에 대한 컬렉션
                            title:
                              type: string
                              example: 해적 시리즈
                        english_name:
                          type: string
                          example: Korean
                        iso_3166_1:
                          type: string
                          example: KR
                        iso_639_1:
                          type: string
                          example: ko
                        name:
                          type: string
                          example: 한국어/조선말
                    example:
                      - data:
                          homepage: ''
                          overview: 영화 해적 시리즈에 대한 컬렉션
                          title: 해적 시리즈
                        english_name: Korean
                        iso_3166_1: KR
                        iso_639_1: ko
                        name: 한국어/조선말
                      - data:
                          homepage: ''
                          overview: ''
                          title: 海盗（系列）
                        english_name: Mandarin
                        iso_3166_1: CN
                        iso_639_1: zh
                        name: 普通话
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates Collection
                        english_name: English
                        iso_3166_1: US
                        iso_639_1: en
                        name: English
                      - data:
                          homepage: ''
                          overview: ''
                          title: Пираты
                        english_name: Russian
                        iso_3166_1: RU
                        iso_639_1: ru
                        name: Pусский
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates - Saga
                        english_name: French
                        iso_3166_1: FR
                        iso_639_1: fr
                        name: Français
                      - data:
                          homepage: ''
                          overview: ''
                          title: Pirates Filmreihe
                        english_name: German
                        iso_3166_1: DE
                        iso_639_1: de
                        name: Deutsch
                      - data:
                          homepage: ''
                          overview: ''
                          title: Os Piratas
                        english_name: Portuguese
                        iso_3166_1: PT
                        iso_639_1: pt
                        name: Português
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates - Collezione
                        english_name: Italian
                        iso_3166_1: IT
                        iso_639_1: it
                        name: Italiano
                      - data:
                          homepage: ''
                          overview: ''
                          title: Los Piratas Coleccion
                        english_name: Spanish
                        iso_3166_1: ES
                        iso_639_1: es
                        name: Español
                      - data:
                          homepage: ''
                          overview: ''
                          title: Piráti (kolekce)
                        english_name: Czech
                        iso_3166_1: CZ
                        iso_639_1: cs
                        name: Český
                      - data:
                          homepage: ''
                          overview: ''
                          title: Piratas - Colección
                        english_name: Spanish
                        iso_3166_1: MX
                        iso_639_1: es
                        name: Español
                      - data:
                          homepage: ''
                          overview: ''
                          title: 海賊（系列）
                        english_name: Mandarin
                        iso_3166_1: TW
                        iso_639_1: zh
                        name: 普通话
                      - data:
                          homepage: ''
                          overview: ''
                          title: הפיראטים - אוסף
                        english_name: Hebrew
                        iso_3166_1: IL
                        iso_639_1: he
                        name: עִבְרִית
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates Collectie
                        english_name: Dutch
                        iso_3166_1: NL
                        iso_639_1: nl
                        name: Nederlands
                      - data:
                          homepage: ''
                          overview: ''
                          title: Coleção Os Piratas
                        english_name: Portuguese
                        iso_3166_1: BR
                        iso_639_1: pt
                        name: Português
                      - data:
                          homepage: ''
                          overview: ''
                          title: Пірати | Колекція
                        english_name: Ukrainian
                        iso_3166_1: UA
                        iso_639_1: uk
                        name: Український
              examples:
                Translations:
                  value:
                    id: 591122
                    translations:
                      - data:
                          homepage: ''
                          overview: 영화 해적 시리즈에 대한 컬렉션
                          title: 해적 시리즈
                        english_name: Korean
                        iso_3166_1: KR
                        iso_639_1: ko
                        name: 한국어/조선말
                      - data:
                          homepage: ''
                          overview: ''
                          title: 海盗（系列）
                        english_name: Mandarin
                        iso_3166_1: CN
                        iso_639_1: zh
                        name: 普通话
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates Collection
                        english_name: English
                        iso_3166_1: US
                        iso_639_1: en
                        name: English
                      - data:
                          homepage: ''
                          overview: ''
                          title: Пираты
                        english_name: Russian
                        iso_3166_1: RU
                        iso_639_1: ru
                        name: Pусский
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates - Saga
                        english_name: French
                        iso_3166_1: FR
                        iso_639_1: fr
                        name: Français
                      - data:
                          homepage: ''
                          overview: ''
                          title: Pirates Filmreihe
                        english_name: German
                        iso_3166_1: DE
                        iso_639_1: de
                        name: Deutsch
                      - data:
                          homepage: ''
                          overview: ''
                          title: Os Piratas
                        english_name: Portuguese
                        iso_3166_1: PT
                        iso_639_1: pt
                        name: Português
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates - Collezione
                        english_name: Italian
                        iso_3166_1: IT
                        iso_639_1: it
                        name: Italiano
                      - data:
                          homepage: ''
                          overview: ''
                          title: Los Piratas Coleccion
                        english_name: Spanish
                        iso_3166_1: ES
                        iso_639_1: es
                        name: Español
                      - data:
                          homepage: ''
                          overview: ''
                          title: Piráti (kolekce)
                        english_name: Czech
                        iso_3166_1: CZ
                        iso_639_1: cs
                        name: Český
                      - data:
                          homepage: ''
                          overview: ''
                          title: Piratas - Colección
                        english_name: Spanish
                        iso_3166_1: MX
                        iso_639_1: es
                        name: Español
                      - data:
                          homepage: ''
                          overview: ''
                          title: 海賊（系列）
                        english_name: Mandarin
                        iso_3166_1: TW
                        iso_639_1: zh
                        name: 普通话
                      - data:
                          homepage: ''
                          overview: ''
                          title: הפיראטים - אוסף
                        english_name: Hebrew
                        iso_3166_1: IL
                        iso_639_1: he
                        name: עִבְרִית
                      - data:
                          homepage: ''
                          overview: ''
                          title: The Pirates Collectie
                        english_name: Dutch
                        iso_3166_1: NL
                        iso_639_1: nl
                        name: Nederlands
                      - data:
                          homepage: ''
                          overview: ''
                          title: Coleção Os Piratas
                        english_name: Portuguese
                        iso_3166_1: BR
                        iso_639_1: pt
                        name: Português
                      - data:
                          homepage: ''
                          overview: ''
                          title: Пірати | Колекція
                        english_name: Ukrainian
                        iso_3166_1: UA
                        iso_639_1: uk
                        name: Український

````