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

# Properties

> Get the companys properties

Returns a list of properties in Sweden belonging to a company. Please note that the field fastighetObjektIdentitet (property UUID)
is the value you use to query for high-resolution ortophotos [here](/api-core/properties/orthophotos) or get a
summary of the property [here](/api-core/properties/summary).


## OpenAPI

````yaml get /datasets/companies/{companyId}/se/properties
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:
  /datasets/companies/{companyId}/se/properties:
    get:
      tags:
        - Companies_SE_
      summary: Properties
      description: Get the companys properties
      operationId: CompanyProperties
      parameters:
        - name: companyId
          in: path
          description: The company id
          required: true
          schema:
            type: integer
            format: int32
        - name: includeOnlyCurrentOwnership
          in: query
          description: Include only current ownership
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_Views_View_FastigheterAgande
components:
  schemas:
    Ormeo_Library_Views_View_FastigheterAgande:
      type: object
      properties:
        fastighetObjektIdentitet:
          type: string
          format: uuid
          nullable: true
        inskrivningsdag:
          type: string
          format: date-time
          nullable: true
        beviljadAndelTaljare:
          type: integer
          format: int64
          nullable: true
        beviljadAndelNamnare:
          type: integer
          format: int64
          nullable: true
        agandeTyp:
          $ref: '#/components/schemas/Ormeo_Library_Entities_LantmaterietAgandeTyp'
        agandeTypBeskrivning:
          type: string
          nullable: true
          readOnly: true
        fastighetTyp:
          $ref: '#/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetTyp'
        lanskod:
          type: string
          nullable: true
        kommunkod:
          type: string
          nullable: true
        status:
          $ref: >-
            #/components/schemas/Ormeo_Library_Entities_LantmaterietFastighetStatus
        totalLandareal:
          type: number
          format: double
          nullable: true
        totalVattenareal:
          type: number
          format: double
          nullable: true
        totalareal:
          type: number
          format: double
          nullable: true
        arealuppgiftOsaker:
          type: boolean
          nullable: true
        registeromrade:
          type: string
          nullable: true
        trakt:
          type: string
          nullable: true
        block:
          type: string
          nullable: true
        enhet:
          type: integer
          format: int32
          nullable: true
        etikett:
          type: string
          nullable: true
          readOnly: true
        lantmateriet_OrderFileId:
          type: integer
          format: int32
        senasteLantmateriet_OrderFileId:
          type: integer
          format: int32
        aktuellAgare:
          type: boolean
          readOnly: true
      additionalProperties: false
    Ormeo_Library_Entities_LantmaterietAgandeTyp:
      enum:
        - lagfart
        - tomtrattsinnehav
      type: string
    Ormeo_Library_Entities_LantmaterietFastighetTyp:
      enum:
        - fastighet
        - samfallighet
      type: string
    Ormeo_Library_Entities_LantmaterietFastighetStatus:
      enum:
        - avregistrerad
        - levande
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````