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

# Images

> This endpoint get company's logo



## OpenAPI

````yaml get /3/company/{company_id}/images
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/company/{company_id}/images:
    parameters:
      - name: company_id
        description: a uniques identifier for companies
        in: path
        required: true
        schema:
          type: integer
          example: 2
    get:
      tags:
        - COMPANIES
      summary: Images
      description: This endpoint get company's logo
      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=3566
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 27 Dec 2024 10:32:18 GMT
            ETag:
              schema:
                type: string
                example: W/"1f45de394476eb293f10c821eec507d5"
            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 ce8f85a4dd9437febbc40094aa7d575a.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: Q_eNUcKj_OUdZM1N3wZ_0UeZLeU6b_Uju0dqQ8JgOsEIWb2pW4mU4g==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LHR50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '20097'
            x-memc-expires:
              schema:
                type: string
                example: '3566'
            x-memc-key:
              schema:
                type: string
                example: bcd7b1e64ade41b2efc4410221ca795a
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 3
                  logos:
                    type: array
                    items:
                      type: object
                      properties:
                        aspect_ratio:
                          type: number
                          example: 4.768817204301075
                        file_path:
                          type: string
                          example: /1TjvGVDMYsj6JBxOAkUHpPEwLf7.png
                        file_type:
                          type: string
                          example: .svg
                        height:
                          type: number
                          example: 186
                        id:
                          type: string
                          example: 5aa7e2580e0a263dc101e6f4
                        vote_average:
                          type: number
                          example: 1.75
                        vote_count:
                          type: number
                          example: 4
                        width:
                          type: number
                          example: 887
                    example:
                      - aspect_ratio: 4.768817204301075
                        file_path: /1TjvGVDMYsj6JBxOAkUHpPEwLf7.png
                        file_type: .svg
                        height: 186
                        id: 5aa7e2580e0a263dc101e6f4
                        vote_average: 1.75
                        vote_count: 4
                        width: 887
                      - aspect_ratio: 5.163265306122449
                        file_path: /z65MpjahUMRimaSusbAYZ7XP3mc.png
                        file_type: .png
                        height: 245
                        id: 6493b74e9a358d00c59633bc
                        vote_average: 1.75
                        vote_count: 2
                        width: 1265
                      - aspect_ratio: 6.183574879227053
                        file_path: /bqGuVkQKYSGixzO9YA6q8PCIWjT.png
                        file_type: .png
                        height: 207
                        id: 656acc110859b4013951005b
                        vote_average: 1.222
                        vote_count: 3
                        width: 1280
              examples:
                Images:
                  value:
                    id: 3
                    logos:
                      - aspect_ratio: 4.768817204301075
                        file_path: /1TjvGVDMYsj6JBxOAkUHpPEwLf7.png
                        file_type: .svg
                        height: 186
                        id: 5aa7e2580e0a263dc101e6f4
                        vote_average: 1.75
                        vote_count: 4
                        width: 887
                      - aspect_ratio: 5.163265306122449
                        file_path: /z65MpjahUMRimaSusbAYZ7XP3mc.png
                        file_type: .png
                        height: 245
                        id: 6493b74e9a358d00c59633bc
                        vote_average: 1.75
                        vote_count: 2
                        width: 1265
                      - aspect_ratio: 6.183574879227053
                        file_path: /bqGuVkQKYSGixzO9YA6q8PCIWjT.png
                        file_type: .png
                        height: 207
                        id: 656acc110859b4013951005b
                        vote_average: 1.222
                        vote_count: 3
                        width: 1280
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````