GET
/
datasets
/
persons
/
se
/
{identityNumber}
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

The response is of type object.