Get a list of monitoring offers fo the given company

📘

In Development

This feature is currently in beta testing!

We are offering monitoring on all companies in all countries worldwide.

Monitoring times

  • "initial": Is the time until the first report is delivered in days
  • "duration": The timeframe of monitoring in days
  • "interval": The interval between updates in days

Report format
Reports are available as XML only data sheets.

Example request:

$.get('https://api.worldbox.ch/v1/product/monitoring/CH0000163067/?lang=' + lang+'&currency='+currency, function(data) {
    console.log(data);
});

Response
A list of monitoring offers for the given company

{
    company: {
        name: "Worldbox AG",
        country: "Switzerland",
        win: "CH0000163067",
    },
     monitoring: [
    {
        name: "Credit Report",
        language: "EN",
        initialtime: 3,
        duration: 365,
        interval: 120,
        contenttype:'Full content',
        format: "XML",
        productcode: "REM193",
        type: "offline",
        price: 890,
        currency: "EUR",
    },
    {
        name: "Company Register",
        language: "EN",
        initialtime: 5,
        duration: 360,
        interval: 180,
        contenttype:'Full content',
        format: "XML",
        productcode: "REM592",
        type: "offline",
        price: 480,
        currency: "EUR",
    }
    ...
    ]
}

Note: the currency will be set according to your billing currency in the account settings!

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