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

# Alternative Names

> This endpoint retrieves a list of alternative names associated with a specific company.



## OpenAPI

````yaml api-reference/openapi3.json get /3/company/{company_id}/alternative_names
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}/alternative_names:
    get:
      tags:
        - COMPANY
      summary: Alternative Names
      description: >-
        This endpoint retrieves a list of alternative names associated with a
        specific company.
      operationId: alternativeNames
      parameters:
        - $ref: '#/components/parameters/company_id'
      responses:
        '200':
          description: alternative names
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=16087
            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:57 GMT
            ETag:
              schema:
                type: string
                example: W/"330ca0f869fd7915e0279049e5937306"
            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 368146333bf1a1071e8432a7d4e41e1a.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: fVMvPIR07i0IxZtBuML8ZMpbdGZ_hoIx-mZ0igYbc8JdbL3zEjBOEw==
            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: '10703'
            x-memc-expires:
              schema:
                type: string
                example: '16087'
            x-memc-key:
              schema:
                type: string
                example: 34a277b6efac478b911fbac601a78742
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 3268
                    description: the unique identifier of the company.
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: Home Box Office
                          description: This is the original name of the company.
                        type:
                          type: string
                          example: ''
                          description: >-
                            indicate the type or category of the name (e.g.,
                            brand name, legal name)
                    description: >-
                      This section contains an array of objects representing
                      different names associated with the company.
                    example:
                      - name: Home Box Office
                        type: ''
                      - name: Home Box Office (HBO)
                        type: ''
                      - name: HBO Entertainment
                        type: ''
              examples:
                alternative names:
                  value:
                    id: 3268
                    results:
                      - name: Home Box Office
                        type: ''
                      - name: Home Box Office (HBO)
                        type: ''
                      - name: HBO Entertainment
                        type: ''
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

````