Skip to main content
GET
Get Advisory Feed

Authorizations

Authorization
string
header
required

Bearer token obtained by authenticating with your organization's service account credentials (client_id and client_secret).

See the Getting started page for the full authentication flow.

Query Parameters

modified_since
string<date-time>

Only return advisories whose effective_modified_at is after this timestamp.

Use ISO 8601 format with a timezone, for example 2026-06-02T18:36:37.473Z. Anaconda recommends UTC.

To sync incrementally, pass the watermark from your previous response.

continuation
string

Token from a previous response to fetch the next page. When provided, all other query parameters are ignored.

limit
integer
default:50

The number of advisories to return per page.

Required range: 1 <= x <= 100
feed_format
string
default:nvdv2

Determines the structure of the representations field in each advisory. nvdv2 is the only format currently supported.

Response

A page of the advisory feed. The example is abbreviated: purls entries are trimmed, and representations.nvdv2 contains the advisory's complete NVD 2.0 document.

feed_version
integer
required

The version number of the feed format.

feed_format
string
required

The format used for advisory representations in this response (for example, nvdv2).

count
integer
required

The number of advisories returned in the current page.

limit
integer
required

The maximum number of advisories per page, as requested.

has_more
boolean
required

Indicates whether additional pages of results are available.

advisories
object[]
required

The list of advisory objects in the current page.

modified_since
string | null

The cutoff timestamp you provided, echoed back in normalized UTC.

Remains the same across all pages. null if you did not provide one.

watermark
string | null

The most recent modification timestamp across all matching advisories.

continuation
string | null

Pass this token as the continuation query parameter to fetch the next page. null when there are no more pages.

next_url
string | null

A ready-to-use relative URL for the next page. null when there are no more pages.