GET
/
datasets
/
persons
/
se
/
{identityNumber}
Details by identity number
curl --request GET \
  --url https://api.tic.io/datasets/persons/se/{identityNumber} \
  --header 'x-api-key: <api-key>'
{
  "personId": 123,
  "nationalityCountryCodeAlpha2": "<string>",
  "personalIdentityNumber": "<string>",
  "isProtected": true,
  "isMarried": true,
  "givenName": "<string>",
  "firstName": "<string>",
  "middleName": "<string>",
  "lastName": "<string>",
  "fullName": "<string>",
  "sex": "male",
  "isCoordinationNumber": true,
  "birthday": "<string>",
  "age": 123
}
This endpoint is used to retrieve the personId for subsequent calls. You can query by personal identity numbers, coordination numbers and retrieve a summary including the personId.

Authorizations

x-api-key
string
header
required

Path Parameters

identityNumber
string
required

The person identity number

Response

200 - application/json

OK

personId
integer
nationalityCountryCodeAlpha2
string | null
personalIdentityNumber
string | null
isProtected
boolean | null
isMarried
boolean | null
givenName
string | null
firstName
string | null
middleName
string | null
lastName
string | null
fullName
string | null
sex
enum<string>
Available options:
male,
female
isCoordinationNumber
boolean | null
birthday
string | null
age
integer | null