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

# Get PRV trademarks for a company

> Returns trademarks registered with PRV (the Swedish Patent and Registration Office) where the company is an applicant, together with classes, events, images, and representatives.

<Badge color="green" size="sm">Pro+ tier</Badge>


## OpenAPI

````yaml get /companies/{id}/trademarks
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /companies/{id}/trademarks:
    get:
      tags:
        - Companies
      summary: Get PRV trademarks for a company
      description: >-
        Returns trademarks registered with PRV (the Swedish Patent and
        Registration Office) where the company is an applicant, together with
        classes, events, images, and representatives.
      operationId: GetCompanyTrademarks
      parameters:
        - name: id
          in: path
          description: Internal company ID
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: List of trademarks
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Ormeo_Library_Dtos_PRV_Trademark_Dto'
        '404':
          description: Company not found or not accessible
components:
  schemas:
    Ormeo_Library_Dtos_PRV_Trademark_Dto:
      type: object
      properties:
        trademarkId:
          type: integer
          format: int32
        transactionId:
          type:
            - 'null'
            - integer
          format: int64
        applicationNumber:
          type:
            - 'null'
            - string
        applicationDate:
          type:
            - 'null'
            - string
          format: date-time
        applicationLanguageCode:
          type:
            - 'null'
            - string
        registrationDate:
          type:
            - 'null'
            - string
          format: date-time
        registrationNumber:
          type:
            - 'null'
            - string
        registrationOfficeCode:
          type:
            - 'null'
            - string
        kindMark:
          type:
            - 'null'
            - string
        expiryDate:
          type:
            - 'null'
            - string
          format: date-time
        markCurrentStatusCode:
          type:
            - 'null'
            - string
        markCurrentStatusCodeDescription:
          type:
            - 'null'
            - string
        markFeature:
          type:
            - 'null'
            - string
        markFeatureDescription:
          type:
            - 'null'
            - string
        markVerbalElementText:
          type:
            - 'null'
            - string
        markDescription:
          type:
            - 'null'
            - string
        useLimitationText:
          type:
            - 'null'
            - string
        priorityDetails:
          type:
            - 'null'
            - string
        publicationDate:
          type:
            - 'null'
            - string
          format: date-time
        publicationSection:
          type:
            - 'null'
            - string
        publicationTypeName:
          type:
            - 'null'
            - string
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        prv_TrademarkApplicant:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PRV_TrademarkApplicant_Dto'
        prv_TrademarkClass:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PRV_TrademarkClass_Dto'
        prv_TrademarkImage:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PRV_TrademarkImage_Dto'
        prv_TrademarkRepresentative:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Dtos_PRV_TrademarkRepresentative_Dto
        prv_TrademarkEvent:
          type:
            - 'null'
            - array
          items:
            $ref: '#/components/schemas/Ormeo_Library_Dtos_PRV_TrademarkEvent_Dto'
      additionalProperties: false
    Ormeo_Library_Dtos_PRV_TrademarkApplicant_Dto:
      type: object
      properties:
        trademarkApplicantId:
          type: integer
          format: int32
        trademarkId:
          type: integer
          format: int32
        applicantIdentifier:
          type:
            - 'null'
            - string
        applicantName:
          type:
            - 'null'
            - string
        applicantAddress:
          type:
            - 'null'
            - string
        applicantAddressCountryCode:
          type:
            - 'null'
            - string
        applicantReference:
          type:
            - 'null'
            - string
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        companyId:
          type:
            - 'null'
            - integer
          format: int32
        personId:
          type:
            - 'null'
            - integer
          format: int32
      additionalProperties: false
    Ormeo_Library_Dtos_PRV_TrademarkClass_Dto:
      type: object
      properties:
        trademarkClassId:
          type: integer
          format: int32
        trademarkId:
          type: integer
          format: int32
        classNumber:
          type:
            - 'null'
            - string
        goodsServicesDescription:
          type:
            - 'null'
            - string
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Dtos_PRV_TrademarkImage_Dto:
      type: object
      properties:
        trademarkImageId:
          type: integer
          format: int32
        trademarkId:
          type: integer
          format: int32
        markIdentifier:
          type:
            - 'null'
            - string
        mediaFileName:
          type:
            - 'null'
            - string
        mediaFileFormat:
          type:
            - 'null'
            - string
        markImageColourClaimedText:
          type:
            - 'null'
            - string
        categoryCode:
          type:
            - 'null'
            - string
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        fileId:
          type:
            - 'null'
            - integer
          format: int64
      additionalProperties: false
    Ormeo_Library_Dtos_PRV_TrademarkRepresentative_Dto:
      type: object
      properties:
        trademarkRepresentativeId:
          type: integer
          format: int32
        trademarkId:
          type: integer
          format: int32
        representativeIdentifier:
          type:
            - 'null'
            - string
        representativeName:
          type:
            - 'null'
            - string
        representativeAddress:
          type:
            - 'null'
            - string
        representativeAddressCountryCode:
          type:
            - 'null'
            - string
        representativeReference:
          type:
            - 'null'
            - string
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
        companyId:
          type:
            - 'null'
            - integer
          format: int32
        personId:
          type:
            - 'null'
            - integer
          format: int32
      additionalProperties: false
    Ormeo_Library_Dtos_PRV_TrademarkEvent_Dto:
      type: object
      properties:
        trademarkEventId:
          type: integer
          format: int32
        trademarkId:
          type: integer
          format: int32
        eventDate:
          type:
            - 'null'
            - string
          format: date-time
        eventCode:
          type:
            - 'null'
            - string
        fileId:
          type:
            - 'null'
            - integer
          format: int64
        firstSeenAtUtc:
          type:
            - 'null'
            - string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````