Search in our worldwide company index

Worldbox provides company reports on every country in the world.
If the information on a specific company is not available it can be ordered by the entry of the company name, address, and country.

Search for companies in the Worldbox index. The search string must have a minimum length of three characters.
It is not possible to search worldwide at the moment therefore the country code is mandatory.

$.get('http://api.worldbox.ch/v1/companies/?q=' + q+'&countrycode='+countrycode, function(data) {
    console.log(data);
});

As a result, the Webservice returns as a list of found companies including “Win”-number, company name, and current status either active or dissolved. The response will be a JSON object containing the list of companies (array) with a max of 150 records.

{
    "messages": [],
    "countrycode": "CH",
    "searchterm": "Worldbox AG",
    "recordcount": 1,
    "companies": [
        {
            "win": "CH0000163067",
            "country": "CH",
            "street": "Breitackerstrasse 1",
            "status": "active",
            "legalform": "Company limited by shares",
            "name": "Worldbox AG",
            "city": "Zollikon",
            "regnr": "020.3.901.907-9",
            "postcode": "8702"
        }
    ],
    "city": ""

If the response list is with more than 150 records, then you will receive an empty list and a message of too many hits - a finetune of the search is required.

{
    "messages": [
        "WorldboxSearch returned too many hits (636)"
    ],
    "countrycode": "CH",
    "searchterm": "abb",
    "recordcount": 636,
    "companies": [],
    "city": ""
}

Note: WIN Number is the Worldbox unique company identification code and "regnr" is the company register number

Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!