API Resources

GET
/v3/backup

Return a list of backup with their endpoint links.

Overview

VulnCheck backups provide developers with access to hundreds of intelligence sources that we collect and curate, offering a central source for all accessing OSINT and VulnCheck vulnerability intelligence. The /v3/backup API endpoint lets developers access a list of all the backup and endpoint links that their account is licensed for, in alphabetical order.

The API endpoint provides a similar list programmatically, which can be found in the VulnCheck API Sandbox located in the VulnCheck dashboard, and in the list of documented VulnCheck Indexes.

This API endpoint is available to all community and commercial users.

Example Requests

curl --request GET \
    --url https://api.vulncheck.com/v3/backup \
    --header 'Accept: application/json' \
    --header 'Authorization: Bearer insert_token_here'

Response

{
  "_benchmark": 1.146941,
  "data": {
    "count": 102,
    "backups": [
      {
        "name": "abb",
        "description": "ABB Vulnerabilities",
        "backup": "https://api.vulncheck.com/v3/backup/abb"
      },
      {
        "name": "adobe",
        "description": "Adobe Vulnerabilities",
        "backup": "https://api.vulncheck.com/v3/backup/adobe"
      }
    ]
  }
}