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

# Trademark media format

> Gets the media for the trademark

### Details

This will return the actual given media file with the format. Note
that only formats available can be returned and no conversion
will be carried out.


## OpenAPI

````yaml get /media/trademarks/se/{trademarkId}/{mediaFileFormat}
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /media/trademarks/se/{trademarkId}/{mediaFileFormat}:
    get:
      tags:
        - Media
      summary: Get trademark media
      description: Gets the media for the trademark
      operationId: GetTradeMediaSE
      parameters:
        - name: trademarkId
          in: path
          description: The trademark id
          required: true
          schema:
            type: integer
            format: int32
        - name: mediaFileFormat
          in: path
          description: The trademark media type
          required: true
          schema:
            type: string
        - name: inline
          in: query
          description: Set to true to get an inline file rendered in the browser
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_Media_TrademarkMediaSE_dto
components:
  schemas:
    Ormeo_WebAPI_Models_Media_TrademarkMediaSE_dto:
      type: object
      properties:
        fileName:
          type: string
          nullable: true
        mediaFileFormat:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````