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

# Images

> This endpoint allows you to retrieve the logo of an entertainment company by Id.



## OpenAPI

````yaml api-reference/openapi.yaml get /3/company/{{company_id}}/images
openapi: 3.0.3
info:
  title: The Movie Database API
  description: >-
    Welcome to the third version of The Movie Database (TMDB) API. Our API
    provides you with vast access to a range of movies, TV shows, actor
    information, and images.


    With the TMDB API, you can easily integrate any of these functionalities in
    your application.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: Collection
security:
  - bearerAuth: []
tags:
  - name: Validate Key
  - name: Authentication
  - name: Guest Sessions
  - name: Configuration
  - name: Account
  - name: Search
  - name: Discover
  - name: Find
  - name: Keyword
  - name: Lists
  - name: V3 vs V4
    description: >-
      There is version 4 (v4) for our list API. It contains several advanced
      improvements that differentiate it from the version 3 (v3) list. Although
      v3 lists will continue to work, you can only access these features if you
      switch to v4 lists.


      Some of the new improvements you can access on v4 lists include:


      - 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
      ](https://developer.themoviedb.org/v4/docs/getting-started) for more
      information.  
  - name: Collections
  - name: Companies
  - name: Networks
  - name: Trending
  - name: Movies
  - name: Movie Lists
  - name: TV Series
  - name: TV Series Lists
  - name: TV Seasons
  - name: TV Providers
  - name: TV Episode Groups
  - name: Watch Providers
  - name: People
  - name: People List
  - name: Genre
  - name: Changes
  - name: Credits
  - name: Certifications
paths:
  /3/company/{{company_id}}/images:
    parameters:
      - name: company_id
        in: path
        description: >-
          This represents the company ID. Get it
          [here](https://starlight.mintlify.app/api-reference/companyid)
        required: true
        schema:
          type: number
    get:
      tags:
        - Companies
      summary: Images
      description: >-
        This endpoint allows you to retrieve the logo of an entertainment
        company by Id.
      operationId: images1
      responses:
        '200':
          description: Images
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=4318
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 12 Dec 2024 10:28:16 GMT
            ETag:
              schema:
                type: string
                example: W/"2794782993b3638886bde53583eb6bbf"
            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 156336391961f724345f6534c674b6ea.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 7HOMR8sa6OWGqzJYRvxc8XXyX4p09YdD7ZKeZM_aoTCm15kzXxwnqQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '20220'
            x-memc-expires:
              schema:
                type: string
                example: '4318'
            x-memc-key:
              schema:
                type: string
                example: 3b56311898edfe4a7e53ff3c44582871
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 198834
                  logos:
                    type: array
                    items:
                      type: object
                      properties:
                        aspect_ratio:
                          type: number
                          example: 3.7243947858473
                        file_path:
                          type: string
                          example: /tyHnxjQJLH6h4iDQKhN5iqebWmX.png
                        file_type:
                          type: string
                          example: .svg
                        height:
                          type: number
                          example: 537
                        id:
                          type: string
                          example: 644b54af0c125505147ad0ec
                        vote_average:
                          type: number
                          example: 0
                        vote_count:
                          type: number
                          example: 0
                        width:
                          type: number
                          example: 2000
                    example:
                      - aspect_ratio: 3.7243947858473
                        file_path: /tyHnxjQJLH6h4iDQKhN5iqebWmX.png
                        file_type: .svg
                        height: 537
                        id: 644b54af0c125505147ad0ec
                        vote_average: 0
                        vote_count: 0
                        width: 2000
              examples:
                Images:
                  value:
                    id: 198834
                    logos:
                      - aspect_ratio: 3.7243947858473
                        file_path: /tyHnxjQJLH6h4iDQKhN5iqebWmX.png
                        file_type: .svg
                        height: 537
                        id: 644b54af0c125505147ad0ec
                        vote_average: 0
                        vote_count: 0
                        width: 2000
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````