> ## 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 the logo of a network.



## OpenAPI

````yaml get /3/network/{network_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/network/{network_id}/images:
    parameters:
      - name: network_id
        in: path
        required: true
        schema:
          type: integer
          example: 12
    get:
      tags:
        - NETWORK
      summary: Images
      description: This endpoint get the logo of a network.
      operationId: images3
      responses:
        '200':
          description: Images
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=23905
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:23:27 GMT
            ETag:
              schema:
                type: string
                example: W/"6ee04ea907a436372abf616ab5649a7c"
            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 ef212a3d9b7a6edd15e1293f0bf1420e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: WWHqILBQKULCHDcKfZm65PGP0w5P5DUzK0AiOKNAuqMmFHo9N9bifA==
            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: '1595'
            x-memc-expires:
              schema:
                type: string
                example: '23905'
            x-memc-key:
              schema:
                type: string
                example: 9a51a66649f35782d97baa69c3d88a8b
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 12
                  logos:
                    type: array
                    items:
                      type: object
                      properties:
                        aspect_ratio:
                          type: number
                          example: 2.5161290322580645
                        file_path:
                          type: string
                          example: /eJSYeF1YIyQbZdTRNxuvVKaZOIK.png
                        file_type:
                          type: string
                          example: .svg
                        height:
                          type: number
                          example: 62
                        id:
                          type: string
                          example: 5a8776570e0a2653db04855e
                        vote_average:
                          type: number
                          example: 3.334
                        vote_count:
                          type: number
                          example: 2
                        width:
                          type: number
                          example: 156
                    example:
                      - aspect_ratio: 2.5161290322580645
                        file_path: /eJSYeF1YIyQbZdTRNxuvVKaZOIK.png
                        file_type: .svg
                        height: 62
                        id: 5a8776570e0a2653db04855e
                        vote_average: 3.334
                        vote_count: 2
                        width: 156
                      - aspect_ratio: 1.0194805194805194
                        file_path: /7wuTb7iMz5yLoJ8hIyBnUxqR3mP.png
                        file_type: .svg
                        height: 154
                        id: 5a8f49d60e0a2639b2004c52
                        vote_average: 0.166
                        vote_count: 1
                        width: 157
              examples:
                Images:
                  value:
                    id: 12
                    logos:
                      - aspect_ratio: 2.5161290322580645
                        file_path: /eJSYeF1YIyQbZdTRNxuvVKaZOIK.png
                        file_type: .svg
                        height: 62
                        id: 5a8776570e0a2653db04855e
                        vote_average: 3.334
                        vote_count: 2
                        width: 156
                      - aspect_ratio: 1.0194805194805194
                        file_path: /7wuTb7iMz5yLoJ8hIyBnUxqR3mP.png
                        file_type: .svg
                        height: 154
                        id: 5a8f49d60e0a2639b2004c52
                        vote_average: 0.166
                        vote_count: 1
                        width: 157
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````