Get company details

Retrieves all available data for a given company.

URL

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

Headers

NameTypeDescription

Authorization*

string

The API live or test key.

Path parameters

NameTypeDescription

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

AttributeTypeDescription

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

{
    "id": "69655f5f353133313734",
    "name": "STRIPE PAYMENTS EUROPE, LIMITED",
    "registrationNumber": "513174",
    "incorporationCountry": "IE",
    "incorporationDate": "2012-05-15",
    "incorporationType": "LTD - Private Company Limited by Shares",
    "sourceUrl": "http://www.cro.ie/search/CompanyDetails.aspx?id=513174",
    "active": true,
    "createdAt": "2012-06-03T05:18:48+00:00",
    "updatedAt": "2021-10-22T17:38:46+00:00",
    "address": {
        "line": "C/O A&L GOODBODY, IFSC, NORTH WALL QUAY, DUBLIN 1.",
        "country": "IE",
        "fullAddress": "C/O A&L GOODBODY, IFSC, NORTH WALL QUAY, DUBLIN 1."
    },
    "filings": [
        {
            "name": "Filing dated 2020-07-24",
            "description": "B10 CHANGE IN DIRECTOR OR SECRETARY",
            "date": "2020-07-24"
        },
        {
            "name": "Filing dated 2020-02-06",
            "description": "B10 CHANGE IN DIRECTOR OR SECRETARY",
            "date": "2020-02-06"
        },
        {
            "name": "Filing dated 2016-07-08",
            "description": "B1C ANNUAL RETURN - GENERAL - ACCOUNT DETAILS",
            "date": "2016-07-08"
        },
        {
            "name": "Filing dated 2015-10-05",
            "description": "B10 CHANGE IN DIRECTOR OR SECRETARY",
            "date": "2015-10-05"
        },
        {
            "name": "Filing dated 2014-09-30",
            "description": "B1C ANNUAL RETURN - GENERAL - B1 ANNUAL RETURN",
            "date": "2014-09-30"
        },
        {
            "name": "Filing dated 2014-09-30",
            "description": "B1C ANNUAL RETURN - GENERAL - ACCOUNT DETAILS",
            "date": "2014-09-30"
        },
        {
            "name": "Filing dated 2014-09-09",
            "description": "B10 CHANGE IN DIRECTOR OR SECRETARY",
            "date": "2014-09-09"
        },
        {
            "name": "Filing dated 2014-06-12",
            "description": "B1C ANNUAL RETURN - GENERAL - B1 ANNUAL RETURN",
            "date": "2014-06-12"
        },
        {
            "name": "Filing dated 2014-06-12",
            "description": "B1C ANNUAL RETURN - GENERAL - ACCOUNT DETAILS",
            "date": "2014-06-12"
        },
        {
            "name": "Filing dated 2013-12-13",
            "description": "B1 ANNUAL RETURN - NO ACCOUNTS - ANNUAL RETURN",
            "date": "2013-12-13"
        },
        {
            "name": "Filing dated 2013-12-13",
            "description": "B73 - REQUEST TO CHANGE A COMPANYS NARD",
            "date": "2013-12-13"
        },
        {
            "name": "Filing dated 2012-12-06",
            "description": "B1 ANNUAL RETURN - NO ACCOUNTS -ANNUAL RETURN",
            "date": "2012-12-06"
        },
        {
            "name": "Filing dated 2012-03-06",
            "description": "APPLICATION TO REGISTER AS A NEW COMPANY,",
            "date": "2012-03-06"
        }
    ]
}

Last updated