Skip to main content
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
}

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.

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<int32>
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
read-only
sex
enum<string>
Available options:
male,
female
isCoordinationNumber
boolean | null
birthday
string | null
age
integer<int32> | null
read-only