Skip to main content
GET
/
v2
/
changelog
Get Changelog
curl --request GET \
  --url https://api.example.com/v2/changelog \
  --header 'Authorization: Bearer <token>'
[
  {
    "feed_name": "<string>",
    "product_type": "<string>",
    "release_version": "<string>",
    "release_date": "2023-12-25",
    "release_notes": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

feed_name
string | null

Filter changelog entries by feed name. If not provided, all entries are returned.

Example:

"active_outbreaks"

Response

Successful Response

feed_name
string
required

Name of the data feed

Examples:

"active_outbreaks"

"outbreaks"

"events"

product_type
string
required

Type of product or data source

Examples:

"HED"

"Tracker"

"API"

release_version
string
required

Version number of the release

Examples:

"v1.0.0"

"v2.1.3"

"v1.5.2"

release_date
string<date>
required

Date when the release was published

Examples:

"2024-01-15"

"2024-03-22"

"2024-06-10"

release_notes
string
required

Release notes

Example:

"Release notes for v1.0.0"