GET
/
datasets
/
persons
/
{personId}
/
addresses
Addresses
curl --request GET \
  --url https://api.tic.io/datasets/persons/{personId}/addresses \
  --header 'x-api-key: <api-key>'
[
  {
    "personAddressId": 123,
    "addressType": "populationRegisterAddress",
    "co": "<string>",
    "street": "<string>",
    "postalCode": "<string>",
    "city": "<string>",
    "countryName": "<string>",
    "countryCodeAlpha3": "<string>",
    "lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
    "foundAtUtc": "2023-11-07T05:31:56Z",
    "countyCode": "<string>",
    "municipalityCode": "<string>",
    "belagenhetsadressObjektIdentitet": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lastSeenAtUtc": "2023-11-07T05:31:56Z",
    "addressId": 123,
    "source": "<string>"
  }
]

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

FieldDescription
populationRegisterAddressThe public adress of the person
contactAddressContact adress to the person
internationalAddressInternational address to the person
particularAddressParticular address (särskild adress) to the person
particularInternationalAddressParticular adress (särskild internationell adress) to the person
contactInternationalAddressInternational contact address to the person

Authorizations

x-api-key
string
header
required

Path Parameters

personId
integer
required

The person id

Response

200 - application/json

OK

The response is of type object[].