This is an experimental feature for users of semisys. The semisysAPI enables the user to get access to metadata via a webbased service. The advantages are:
The usable filters and formats are dependent on the selected action. If no format is given the first one in the list will be used.
To get access to sensitive metadata you need to use your API key, which is highlighted at the end of the page. If there is no API key listed, contact the semisys Support.
Example calls:
http://semisys.gfz-potsdam.de/semisys/api/?symname=1004&format=json&network=IGS
curl -G http://semisys.gfz-potsdam.de/semisys/api/ -d 'symname=1004' -d 'network=IGS' -d 'api_key=.....'
$.ajax({ url: "http://semisys.gfz-potsdam.de/semisys/api/", data: { format: "json", symname: "6001", network: "IGS" }, dataType: "json", jsonp: "jsoncallback" }).done(function (result) { $.each(result, function (index, station) { console.log(station.siteIdentification); }); });