API Resources

GET
/v4/openapi

OpenAPI specification for the V4 API

/v4/openapi

Returns the OpenAPI JSON specification for all V4 API endpoints. This endpoint does not require authentication.

Example Requests

curl --request GET \
  --url 'https://api.vulncheck.com/v4/openapi'

Response

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.