> ## 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 property by latitude and longitude (WGS84)

> Gets the property (fastighet) containing the given WGS84 position



## OpenAPI

````yaml get /datasets/properties/se/by-location
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/properties/se/by-location:
    get:
      tags:
        - Properties_SE_
      summary: Get property by latitude and longitude (WGS84)
      description: Gets the property (fastighet) containing the given WGS84 position
      operationId: GetPropertyByLocation
      parameters:
        - name: latitude
          in: query
          description: The latitude of the position (WGS84)
          required: true
          schema:
            type: number
            format: double
        - name: longitude
          in: query
          description: The longitude of the position (WGS84)
          required: true
          schema:
            type: number
            format: double
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_PropertyLocationLookup_Dto
components:
  schemas:
    Ormeo_Library_Lantmateriet_Dto_Lantmateriet_PropertyLocationLookup_Dto:
      type: object
      properties:
        registerEnhetObjektIdentitet:
          type: string
          format: uuid
        beteckning:
          type: string
          nullable: true
        trakt:
          type: string
          nullable: true
        block:
          type: string
          nullable: true
        enhet:
          type: integer
          format: int64
          nullable: true
        kommunkod:
          type: string
          nullable: true
        kommunnamn:
          type: string
          nullable: true
        lanskod:
          type: string
          nullable: true
        osakertlage:
          type: boolean
          nullable: true
        objekttyp:
          type: string
          nullable: true
        omradesnummer:
          type: integer
          format: int32
          nullable: true
        samjelittera:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````