Get addresses for a person
curl --request GET \
--url https://lens-api.tic.io/persons/{id}/addresses \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/persons/{id}/addresses"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/persons/{id}/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lens-api.tic.io/persons/{id}/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/persons/{id}/addresses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/persons/{id}/addresses")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/persons/{id}/addresses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"personAddressId": 123,
"personId": 123,
"addressTypeDescription": "<string>",
"label": "<string>",
"houseNumber": "<string>",
"co": "<string>",
"street": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"county": "<string>",
"district": "<string>",
"countryName": "<string>",
"countryCodeAlpha3": "<string>",
"locality": "<string>",
"localityType": "<string>",
"position": {
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"geometryType": "<string>",
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"isEmpty": true,
"area": 123,
"length": 123,
"centroid": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"interiorPoint": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"pointOnSurface": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"boundary": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"foundAtUtc": "2023-11-07T05:31:56Z",
"companyDataSourceTypeDescription": "<string>",
"countryLocalized": "<string>",
"orginalLabel": "<string>",
"fileId": 123,
"orginalAddressHash": "<string>",
"externalId": 123,
"countyCode": "<string>",
"municipalityCode": "<string>",
"belagenhetsadressObjektIdentitet": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"addressId": 123,
"addressIntelligence": [
{
"addressIntelligenceId": 123,
"addressId": 123,
"addressIntelligenceTypeDescription": "<string>",
"addressIntelligenceSubType": "<string>",
"addressIntelligenceSubTypeDescription": "<string>",
"addressIntelligencePolicyId": 123,
"notes": "<string>",
"notesEn": "<string>",
"notesSv": "<string>",
"score": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"externalId": 123,
"intelligenceNotesType": 123,
"notesValue1": "<string>",
"notesValue2": "<string>",
"notesValue3": "<string>",
"notesValue4": "<string>"
}
]
}
]Persons
Get addresses for a person
Returns all known addresses linked to the person. For max/enterprise/government tiers each address is enriched with active AddressIntelligence signals.
GET
/
persons
/
{id}
/
addresses
Get addresses for a person
curl --request GET \
--url https://lens-api.tic.io/persons/{id}/addresses \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/persons/{id}/addresses"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/persons/{id}/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lens-api.tic.io/persons/{id}/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/persons/{id}/addresses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/persons/{id}/addresses")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/persons/{id}/addresses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"personAddressId": 123,
"personId": 123,
"addressTypeDescription": "<string>",
"label": "<string>",
"houseNumber": "<string>",
"co": "<string>",
"street": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"county": "<string>",
"district": "<string>",
"countryName": "<string>",
"countryCodeAlpha3": "<string>",
"locality": "<string>",
"localityType": "<string>",
"position": {
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"geometryType": "<string>",
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"isEmpty": true,
"area": 123,
"length": 123,
"centroid": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"interiorPoint": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"pointOnSurface": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"boundary": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"foundAtUtc": "2023-11-07T05:31:56Z",
"companyDataSourceTypeDescription": "<string>",
"countryLocalized": "<string>",
"orginalLabel": "<string>",
"fileId": 123,
"orginalAddressHash": "<string>",
"externalId": 123,
"countyCode": "<string>",
"municipalityCode": "<string>",
"belagenhetsadressObjektIdentitet": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"addressId": 123,
"addressIntelligence": [
{
"addressIntelligenceId": 123,
"addressId": 123,
"addressIntelligenceTypeDescription": "<string>",
"addressIntelligenceSubType": "<string>",
"addressIntelligenceSubTypeDescription": "<string>",
"addressIntelligencePolicyId": 123,
"notes": "<string>",
"notesEn": "<string>",
"notesSv": "<string>",
"score": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"externalId": 123,
"intelligenceNotesType": 123,
"notesValue1": "<string>",
"notesValue2": "<string>",
"notesValue3": "<string>",
"notesValue4": "<string>"
}
]
}
]Enterprise+ tier
Authorizations
Path Parameters
Internal person ID
Response
200 - application/json
List of person addresses
Available options:
populationRegisterAddress, contactAddress, internationalAddress, particularAddress, particularInternationalAddress, contactInternationalAddress Show child attributes
Show child attributes
Available options:
bolt, dash, flux, pixel, quark, spark, vector, cipher, delta, omega, nova, apex, zenith, pulse, nexus, helix, prism, vertex, ion, codec, vortex, matrix, byte, glitch, echo, rune, sync, axiom, core, node, nano, photon, orbit, tensor, kernel, beacon, crypto, proxy, lumen, strobe, neutron, radix Available options:
table_Bolagsverket_Notification, table_Stage_CompanyPersonHistory, table_PRV_Trademark, table_System_SwedishCity, table_FI_Company, table_FI_CompanyPermit, table_ICA_Store, table_Srf_Company, table_FAR_Member, table_Bolagsverket_Document, table_Bolagsverket_Case, table_SalesOrderRow, table_SalesOrder, table_System_UserValidation, table_System_User, table_User, table_TeamInvitation, table_Sweden_CourtDocument, table_PRV_TrademarkImage, table_Bolagsverket_Order, table_SCB_JE, table_SCB_AE, table_Bolagsverket_BeneficialOwnerNotification, table_TeamWatchListTrigger, table_SCB_Foretagsnamn, table_SCB_ExpImp, table_SCB_AstNummer, table_SCB_Konskvot, table_Company, table_Larmtjanst_Object, table_Transportstyrelsen_Person, table_Forsakringskassan_Claim, table_FI_BorsInformationReport, table_Skatteverket_FA_INK, table_Skatteverket_FA_MOMS_AG, table_Skatteverket_KA_PLIGG, table_Skatteverket_SKT_AG, table_Skatteverket_SKT_INK, table_Skatteverket_SKT_MOMS, table_Skatteverket_TF_ANST, table_SPAR_NotificationRecord, table_SPAR_NotificationRecordReference, table_Lantmateriet_InskrivningPerson, table_CompanyCase, table_Bolagsverket_BeneficialOwner, table_Bolagsverket_AnnualReport, table_SPAR_NotificationRecordRelationship, table_Skatteverket_Basinformation, table_PersonRelationship, table_CompanyImport, table_SeaweedFSFile, table_Sweden_CompanyAnnualReport, table_CompanyFinancialReport, table_CompanyAddress, table_CompanyStatus, table_CompanyPerson, table_CompanyRegistration, table_CompanyIntelligence, table_CompanyFinancialDocument, table_CompanyNaming, table_CompanyPurpose, table_CompanyShareCapital, table_CompanyRegisteredOffice, table_KFM_OrderToPayCase, table_PersonAddress, table_PersonName, table_CompanyWorkplaceAddress, table_Lantmateriet_InskrivningAgandeForandring, table_Lantmateriet_InskrivningInteckning, file_Bolagsverket, table_KFM_DebtorSummaryEntityDebt, table_CompanyWorkplaceCompany, table_CompanyDocument, table_FileImport, table_CompanyFinancialReportRegistration, table_Folkhalsomyndigheten_ServingPermit, table_CompanyFinancialReportFile, table_TeamCompanyDocument, table_Bolagsverket_RepresentativeHistory, table_CompanyPersonTemp, table_Lansstyrelsen_Decision, table_Kammarkollegiet_Sanktionsavgift, table_CompanyFinancialReportSummary, table_Lantmateriet_InskrivningAnteckning, table_Property, table_SwishRequest, external_Lantmateriet_RegisterenhetObjektIdentitet, table_SwishRefundResponse, table_LEI_Order, table_Bankgirot_Bankgironumber, table_Person, external_Navet, table_Transportstyrelsen_VehicleSummaryEvent, external_Bolagsverket_Case, table_Ria_AgentLocation, table_PropertyAnnualReportFile Show child attributes
Show child attributes
⌘I