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

# Details

> This endpoint get the company details by ID.



## OpenAPI

````yaml api-reference/openapi3.json get /3/company/{company_id}
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}:
    get:
      tags:
        - COMPANY
      summary: Details
      description: This endpoint get the company details by ID.
      operationId: details2
      parameters:
        - $ref: '#/components/parameters/company_id'
      responses:
        '200':
          description: details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=20754
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 20 Dec 2024 15:38:37 GMT
            ETag:
              schema:
                type: string
                example: W/"4741a4515b8b0238bd924b8799ef67b6"
            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 98e30e5953336545df428a8f5923a288.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: fKCFq8jfcqoPW22AWdT6X0F6asJ9lR35qU4mapMjPNVC4Ah844yX8A==
            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: '7338'
            x-memc-expires:
              schema:
                type: string
                example: '20754'
            x-memc-key:
              schema:
                type: string
                example: 73c1b839049e9659636a6578381a0bd1
          content:
            application/json:
              schema:
                type: object
                properties:
                  description:
                    type: string
                    example: ''
                    description: A textual overview of the company or organization.
                  headquarters:
                    type: string
                    example: New York City, New York
                    description: >-
                      The location of the company’s main office or operational
                      center.
                  homepage:
                    type: string
                    example: https://www.hbo.com
                    description: >-
                      The official website of the company, providing information
                      about its services, offerings, and contact details.
                  id:
                    type: number
                    example: 3268
                    description: the unique identifier of the company.
                  logo_path:
                    type: string
                    example: /tuomPhY2UtuPTqqFnKMVHvSb724.png
                    description: >-
                      The file path for the company’s logo, typically used to
                      display the brand image visually.
                  name:
                    type: string
                    example: HBO
                    description: The official name of the company or organization.
                  origin_country:
                    type: string
                    example: US
                    description: >-
                      The country where the company was established or primarily
                      operates.
                  parent_company:
                    nullable: true
                    example: null
              examples:
                details:
                  value:
                    description: ''
                    headquarters: New York City, New York
                    homepage: https://www.hbo.com
                    id: 3268
                    logo_path: /tuomPhY2UtuPTqqFnKMVHvSb724.png
                    name: HBO
                    origin_country: US
                    parent_company: null
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

````