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

# Images

> This endpoint get the company logos by id.



## OpenAPI

````yaml api-reference/openapi3.json get /3/company/{company_id}/images
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/company/{company_id}/images:
    get:
      tags:
        - COMPANY
      summary: Images
      description: This endpoint get the company logos by id.
      operationId: images1
      parameters:
        - $ref: '#/components/parameters/company_id'
      responses:
        '200':
          description: images
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=10691
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 20 Dec 2024 15:42:33 GMT
            ETag:
              schema:
                type: string
                example: W/"5fa7b180749f50486e2360ad78918730"
            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 c84ecfd128e1f4c41a53a2b42410f3b8.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: RMzRY-IPKsKyd70AJFn61xTfdsmDqvFjyWQpax9hmcteAqmSkm-P0Q==
            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: '10919'
            x-memc-expires:
              schema:
                type: string
                example: '10691'
            x-memc-key:
              schema:
                type: string
                example: 499b7fa21cd17f1320e548556577386b
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 3268
                    description: A unique identifier for the company
                  logos:
                    type: array
                    items:
                      type: object
                      properties:
                        aspect_ratio:
                          type: number
                          example: 2.425287356321839
                          description: The ratio of width to height of the logo image
                        file_path:
                          type: string
                          example: /tuomPhY2UtuPTqqFnKMVHvSb724.png
                          description: The path to the logo image file.
                        file_type:
                          type: string
                          example: .svg
                          description: >-
                            The file extension/type of the logo image,
                            indicating the format in which it is saved. Here, it
                            is in SVG format.
                        height:
                          type: number
                          example: 174
                          description: The height of the logo image
                        id:
                          type: string
                          example: 5aa1688c9251416105009d28
                          description: >-
                            A unique identifier for the specific logo within the
                            context of the company.
                        vote_average:
                          type: number
                          example: 3.334
                          description: >-
                            The average rating (or score) given to the content
                            (usually on a scale), representing user feedback.
                        vote_count:
                          type: number
                          example: 1
                          description: >-
                            The total number of votes/cast ratings that
                            contributed to the vote_average
                        width:
                          type: number
                          example: 422
                          description: The width of the image.
                    description: >-
                      This is a graphical representations or brand images
                      associated with a company.
                    example:
                      - aspect_ratio: 2.425287356321839
                        file_path: /tuomPhY2UtuPTqqFnKMVHvSb724.png
                        file_type: .svg
                        height: 174
                        id: 5aa1688c9251416105009d28
                        vote_average: 3.334
                        vote_count: 1
                        width: 422
              examples:
                images:
                  value:
                    id: 3268
                    logos:
                      - aspect_ratio: 2.425287356321839
                        file_path: /tuomPhY2UtuPTqqFnKMVHvSb724.png
                        file_type: .svg
                        height: 174
                        id: 5aa1688c9251416105009d28
                        vote_average: 3.334
                        vote_count: 1
                        width: 422
components:
  parameters:
    company_id:
      name: company_id
      in: path
      required: true
      description: A unique identifier assigned to a company.
      schema:
        type: number
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````