get http://testapi.worldbox.ch/v1/companies/
Ask for the company details with the win-number.
A WIN number is the Worldbox's unique identifying number for a specific company
Example:
$.get('https://api.worldbox.ch/v1/companies/CH0000163067', function(data) {
    console.log(data);
});
The response will be a JSON object with company details
{
    company: {
        win: "CH0000163067",
        name: "Worldbox AG",
        street: "Breitackerstrasse 1",
        city: "Zollikon",
        postcode: "8702",
        countrycode: "CH",
        country: "Switzerland",
        county: "ZH",
        website: "http://www.worldbox.net",
        status: "active",
        legalform: "Company limited by shares",
        hrnumber: "CH-020.3.901.907-9",
        hrdate: "1982-06-11T00:00+00:00"
    }
}
Note:
- hrnumber represents the trade register number
- hrdate presents the trade register registration date
