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

# Addresses

> Returns a list of known addresses

Lists all addresses for a given person. If you want latitude and longitude for the address
you can use the adressId to query for additional address details.

### Source

The property, source, contains the actual source of the information and depends on country.

### Address Type

The property, addressType, is a string enum containing the type of the address

| Field                          | Description                                                      |
| ------------------------------ | ---------------------------------------------------------------- |
| populationRegisterAddress      | The public adress of the person                                  |
| contactAddress                 | Contact adress to the person                                     |
| internationalAddress           | International address to the person                              |
| particularAddress              | Particular address (särskild adress) to the person               |
| particularInternationalAddress | Particular adress (särskild internationell adress) to the person |
| contactInternationalAddress    | International contact address to the person                      |


## OpenAPI

````yaml get /datasets/persons/{personId}/addresses
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/{personId}/addresses:
    get:
      tags:
        - Persons
      summary: Addresses
      description: Returns a list of known addresses
      operationId: PersonAddresses
      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_WebAPI_Models_Datasets_Persons_PersonAddress_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Persons_PersonAddress_Dto:
      type: object
      properties:
        personAddressId:
          type: integer
          format: int32
        addressType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonAddressType'
        co:
          type: string
          nullable: true
        street:
          type: string
          nullable: true
        postalCode:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        countryName:
          type: string
          nullable: true
        countryCodeAlpha3:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
        foundAtUtc:
          type: string
          format: date-time
        countyCode:
          type: string
          nullable: true
        municipalityCode:
          type: string
          nullable: true
        belagenhetsadressObjektIdentitet:
          type: string
          format: uuid
          nullable: true
        lastSeenAtUtc:
          type: string
          format: date-time
          nullable: true
        addressId:
          type: integer
          format: int32
          nullable: true
        source:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_Library_Entities_PersonAddressType:
      enum:
        - populationRegisterAddress
        - contactAddress
        - internationalAddress
        - particularAddress
        - particularInternationalAddress
        - contactInternationalAddress
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````