9.1 Version
Request |
Value |
Method |
GET |
URL |
https://api.metadefender.com/v4/status/version |
Summary
This endpoint shows the current version of the API. MetaDefender Cloud API uses semantic versioning so you can expect changing of a version to reflect if it was a bugfix or also adding new features. MetaDefender Cloud API does not do any breaking changes from one release to another, and if this ever happens, we will notify all clients with at least one month in advanced.
Request
No headers or parameters required. This is an open endpoint.
Response
HTTP Status Codes
Please refer to Status Codes for more information.
Body
Example of a successful request:
{
"version"
: <current API version>
}
Descriptions of responses:
version |
The current version of the front end |
Sample code (Node.js)
var http = require(
"https"
);
var options = {
"method"
:
"GET"
,
"hostname"
: [
"api"
,
"metadefender"
,
"com"
],
"path"
: [
"v4"
,
"status"
,
"version"
]
};
var req = http.request(options, function (res) {
var chunks = [];
res.on(
"data"
, function (chunk) {
chunks.push(chunk);
});
res.on(
"end"
, function () {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
Sample code (cURL)
curl -X GET \
https:
//api.metadefender.com/v4/status/version \