Returns the OpenAPI JSON specification for all V4 API endpoints. This endpoint does not require authentication.
curl --request GET \
--url 'https://api.vulncheck.com/v4/openapi'
import requests
response = requests.get('https://api.vulncheck.com/v4/openapi')
print(response.json())
Returns the full OpenAPI 3.0 specification as JSON.
{
"openapi": "3.0.0",
"info": {
"title": "VulnCheck V4 API",
"version": "4.0.0"
},
"paths": {
"/advisory": { },
"/advisory/list": { },
"/backup": { }
}
}
The paths object contains the full route definitions for each endpoint. The response above is abbreviated for clarity.