Query Parameters

API query parameters supported by VulnCheck Canary Intelligence for filtering the vulncheck-canaries index.

VulnCheck Canary Intelligence makes it easy to query our canary data set with a number of API query parameters, useful for filtering the results. Supported API query parameters are as follows:

Query ParameterDescription
cveFilter based on CVE ID
src_countryFilter based on the attacks originating from a source country
dst_countryFilter based on the attacks on the destination country
dateFilter based on the date of the attack in YYYY-MM-DD format
src_ipFilter based on the source IP address of the attack
src_asnFilter based on the source ASN of the attack in AS12345 format
cidrFilter based on a CIDR range e.g., 1.0.0.0/24

Example: A CVE Being Exploited on a Specific Date

By combining two of the API query parameters (CVE and Date) we can quickly zoom in on a CVE being exploited on a specific date.

curl --request GET \
    --url 'https://api.vulncheck.com/v3/index/vulncheck-canaries?cve=CVE-2024-5276&date=2025-10-17' \
    --header 'Accept: application/json' \
    --header 'Authorization: Bearer insert_token_here'

Query parameters can be combined freely — for example src_country and cidr together narrow results to a specific network range's activity originating from a specific country.