Basilisk
API referenceReference

Windowed canonical advisory list for the exact-version scope, with the structured remediation facts for each windowed advisory.

GET
/v1/packages/{name}/versions/{version}/advisories

Path Parameters

name*string

Package name

version*string

Exact recorded version; the aggregate all sentinel is rejected

Query Parameters

view?string

Exact-version advisory view. Omitted means affecting.

Value in

  • "affecting"
  • "unconfirmed"
offset?integer

Zero-based row offset into the sorted canonical advisory window.

Formatint64
limit?integer

Window size. Omitted callers get a bounded default, never the full list.

Formatint64

Response Body

application/json

curl -X GET "https://example.com/v1/packages/pillow/versions/10.2.0/advisories"
{  "items": [    {      "active_on_latest": true,      "advisory_kind": "string",      "affects_requested": true,      "applicability": "string",      "canonical_id": "string",      "fix_version": "string",      "remediation": [        {          "first_release_outside_range": null,          "matched_identity_kind": "string",          "matched_identity_value": "string",          "reported_fixes": [            {              "conda_publication": "string",              "published_release_index": 0,              "version": "string"            }          ],          "source_advisory_id": "string",          "source_kind": "string"        }      ],      "severity": null,      "source_advisory_id": "string",      "summary": "string"    }  ],  "limit": 0,  "offset": 0,  "requested_version": "string",  "total": 0,  "version_known": true,  "view_totals": {    "affecting": 0,    "unconfirmed": 0  }}