GET
/
datasets
/
companies
/
{companyId}
/
share-register
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/share-register \
  --header 'x-api-key: <api-key>'
[
  {
    "holderCompanyId": 123,
    "holderCompanyMostRecentLegalName": "<string>",
    "holderPersonId": 123,
    "numberOfShares": 123,
    "numberOfVotes": 123,
    "shareType": "<string>",
    "shareClass": "<string>",
    "paidUp": 123,
    "nominalValuePerShareInUSD": 123,
    "nominalValuePerShareInCurrencyCode": 123,
    "currencyCode": "<string>",
    "representedBy": "<string>"
  }
]

This endpoint contains any information we may know about the share-register. Remember this is not the companies actual share-register. Instead this information is gathered from multiple sources such as minutes where the voters register could be present or from authorities such as SCB (Statistikmyndigheten) which collects information about parent companies.

If numberOfShares is empty / null it means we have no information about the actual number of shares but typically it represents a parent company.

The endpoint helps gathering information from various sources for ownership investigations tailored for KYC purposes. The purpose is not to visualize the full share-register.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Response

200 - application/json

OK

The response is of type object[].