Get company details

Retrieves all available data for a given company.

URL

GET https://api.complycube.com/v1/lookup/companies/:id

Headers

Name
Type
Description

Authorization*

string

The API live or test key.

Path parameters

Name
Type
Description

id*

string

The ID of the company.

Example request

curl -X GET https://api.complycube.com/v1/lookup/companies/{:companyId} \
     -H 'Authorization: <YOUR_API_KEY>'

The Company object

Attribute
Type
Description

id

string

The unique identifier for a company.

name

string

The registered name of the company.

registrationNumber

string

The registration number of the company.

incorporationCountry

string

The incorporation country of the company.

incorporationDate

string

The date the company was incorporated. The format is YYYY-MM-DD.

incorporationType

string

The incorporation type of the company.

address

object

The structured address of the company.

active

boolean

Indicates if a company is active.

sourceUrl

string

The source URL from which the data was obtained.

owners

array[object]

The list of owners as structured objects.

officers

array[object]

The list of officers as structured objects.

filings

array[object]

The list of company filing as structured objects.

industryCodes

array[object]

The list of industry codes as structured objects.

createdAt

string

The date and time when the company record was created at source.

updatedAt

string

The date and time when the company record was updated at source.

Example response

Last updated

Was this helpful?