> ## 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 persons properties

This endpoint is used to retrieve information about owned properties for an individual. This endpoint is only applicable for credit information
customers that passed certain requirements (purpose validation) and has separate throttling enabled.


## OpenAPI

````yaml get /datasets/persons/se/{personId}/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/persons/se/{personId}/properties:
    get:
      tags:
        - Persons_SE_
      summary: Properties
      description: Get the persons properties
      operationId: PersonProperties
      parameters:
        - name: personId
          in: path
          description: The person id
          required: true
          schema:
            type: integer
            format: int32
      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

````