Verify a company/business name registration

Verify if a business or company name has been registered.

circle-info

PLEASE NOTE: This endpoint requires a premium subscription.

Verify company

POST https://api.verifynest.io/api/public/v1/verify/verifycompany

This endpoint allows you to verify if a company or business name has been registered.

Headers

Name
Type
Description

Authorization

string

Bearer <API_TOKEN>

Request Body

Name
Type
Description

keyword

string

The name of the company/business name - eg. EXAMPLE PTY LTD

{
    "isIncorporated": true,
    "found": {
        "identifier": {
            "numberHeading": "ACN",
            "number": "110219460"
        },
        "name": {
            "name": "EXAMPLE PTY LTD"
        },
        "type": {
            "code": "APTY",
            "description": "Australian Proprietary Company"
        },
        "class": {
            "code": "LMSH",
            "description": "Limited By Shares"
        },
        "subClass": {
            "code": "PROP",
            "description": "Proprietary Company"
        },
        "status": {
            "code": "REGD",
            "description": "Registered",
            "isRegistered": true
        },
        "dateRegistered": "2004-07-27T00:00:00.000Z",
        "dateReview": "2022-07-27T00:00:00.000Z",
        "address": [
            {
                "type": "RG",
                "addressLine": [
                    "DETAILED ADDRESS DATA ONLY AVAILABLE THROUGH EXTRACT"
                ],
                "iso3166CountryCode": "AU",
                "locality": "GREENSLOPES",
                "postCode": "4120",
                "state": "QLD"
            },
            {
                "type": "PA",
                "addressLine": [
                    "DETAILED ADDRESS DATA ONLY AVAILABLE THROUGH EXTRACT"
                ],
                "iso3166CountryCode": "AU",
                "locality": "GREENSLOPES",
                "postCode": "4120",
                "state": "QLD"
            }
        ],
        "abrEntity": {
            "abn": "50110219460",
            "entityName": "EXAMPLE PTY LTD",
            "entityType": "PRV",
            "effectiveDate": "2004-07-27T00:00:00.000Z"
        }
    }
}

Last updated

Was this helpful?