Skip to main content
GET
/
datasets
/
companies
/
{companyId}
/
names
Names
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/names \
  --header 'x-api-key: <api-key>'
[
  {
    "companyNamingType": "legalName",
    "companyNamingTypeDescription": "<string>",
    "nameOrIdentifier": "<string>",
    "firstSeenAtUtc": "2023-11-07T05:31:56Z",
    "companyNameDecidedAt": "2023-11-07T05:31:56Z",
    "specialPurpose": "<string>"
  }
]
This endpoint delivers historic and current names of the business but also any particular names and other tradenames and their purposes. The date companyNameDecidedAt represents the date when the business decided to use the names and the firstSeentAtUtc represents the first date when we received the information about the name.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Response

200 - application/json

OK

companyNamingType
enum<string>
Available options:
legalName,
commonName,
tradingName,
particularName,
foreignLanguageName,
other,
legalNameSuggested,
commonNameSuggested,
tradingNameSuggested,
particularNameSuggested,
foreignLanguageNameSuggested
companyNamingTypeDescription
string | null
nameOrIdentifier
string | null
firstSeenAtUtc
string<date-time> | null
companyNameDecidedAt
string<date-time> | null
specialPurpose
string | null
I