> ## 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.

# Details

> This endpoint get details of a specific company



## OpenAPI

````yaml get /3/company/{company_id}
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}:
    parameters:
      - name: company_id
        description: a uniques identifier for companies
        in: path
        required: true
        schema:
          type: integer
          example: 2
    get:
      tags:
        - COMPANIES
      summary: Details
      description: This endpoint get details of a specific company
      operationId: details2
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=17836
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 27 Dec 2024 10:24:45 GMT
            ETag:
              schema:
                type: string
                example: W/"6f7fcd609c0e68be1925fb2ce1c7ef7f"
            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 0ed0b3a1a3e8908d48a47272b433d54e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: VUY310i7nT5_Tc_sGiEAQPn0WanVNBsHZYsz56zj1o6wv8IZdH9ccA==
            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: '9515'
            x-memc-expires:
              schema:
                type: string
                example: '17836'
            x-memc-key:
              schema:
                type: string
                example: 60c4072f90683b6d12e1b37678e6a8f9
          content:
            application/json:
              schema:
                type: object
                properties:
                  description:
                    type: string
                    example: ''
                  headquarters:
                    type: string
                    example: Burbank, California
                  homepage:
                    type: string
                    example: https://movies.disney.com
                  id:
                    type: number
                    example: 2
                  logo_path:
                    type: string
                    example: /wdrCwmRnLFJhEoH8GSfymY85KHT.png
                  name:
                    type: string
                    example: Walt Disney Pictures
                  origin_country:
                    type: string
                    example: US
                  parent_company:
                    nullable: true
                    example: null
              examples:
                Details:
                  value:
                    description: ''
                    headquarters: Burbank, California
                    homepage: https://movies.disney.com
                    id: 2
                    logo_path: /wdrCwmRnLFJhEoH8GSfymY85KHT.png
                    name: Walt Disney Pictures
                    origin_country: US
                    parent_company: null
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````