Question Details

No question body available.

Tags

powershell chocolatey

Answers (1)

July 7, 2026 Score: 2 Rep: 45,091 Quality: Low Completeness: 70%

Chocolatey's API implements (to a certain degree) standard OData parameters, so you can get the top 20 most recently-published packages from an endpoint like:

GET https://community.chocolatey.org/api/v2/Packages?$top=20&$orderby=Published%20desc

This generates a list of the top 20 most-recently published Packages entities. Despite the use of the Published attribute, the returned data does appear to be indexed on the last update of a package and not the date on which the packages were initially published.