Chocolatey Scraper avatar

Chocolatey Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Chocolatey Scraper

Chocolatey Scraper

Scrape the Chocolatey Community Repository NuGet v2 API. Search for Windows packages by keyword or fetch specific packages by ID. Extracts version, description, authors, tags, download counts, approval status, license info, and more.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Scrape the Chocolatey Community Repository — the largest repository of Windows software packages — using the NuGet v2 OData API. Extract package metadata including versions, authors, download counts, approval status, tags, license information, and more.

Features

  • Search by keyword — find packages matching any search term in their name or tags
  • Get by ID — fetch the latest version of specific packages by their exact ID
  • Approval status — see whether packages are officially approved, exempted, or pending
  • Rich metadata — total and version-specific download counts, tags, license URLs, project URLs, published dates, and more
  • No authentication required — uses the public Chocolatey Community NuGet v2 API

Input

FieldTypeDescription
modestringsearchPackages (default) or getByName
searchQuerystringKeyword to search for packages (e.g. nodejs, python, git, firefox)
packageIdsarrayPackage IDs for getByName mode (e.g. ["nodejs", "python", "git"])
maxItemsintegerMaximum packages to return (1–500, default 50)
{
"mode": "searchPackages",
"searchQuery": "nodejs",
"maxItems": 50
}

Example Input — Get by ID

{
"mode": "getByName",
"packageIds": ["nodejs", "python", "git", "googlechrome", "7zip"],
"maxItems": 10
}

Output

Each record represents one Chocolatey package:

{
"packageId": "nodejs",
"version": "24.16.0",
"title": "Node JS",
"description": "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine...",
"summary": "Node JS - Evented I/O for v8 JavaScript.",
"authors": "Node.js Foundation",
"tags": ["nodejs", "node", "javascript", "npm", "admin", "foss", "cross-platform"],
"downloadCount": 5000000,
"versionDownloadCount": 208,
"published": "2026-05-21T18:15:48.493",
"projectUrl": "http://nodejs.org/",
"iconUrl": "https://cdn.jsdelivr.net/gh/...",
"licenseUrl": "https://github.com/nodejs/node/blob/master/LICENSE",
"requireLicenseAcceptance": false,
"isPrerelease": false,
"isApproved": true,
"packageStatus": "Approved",
"sourceUrl": "https://community.chocolatey.org/packages/nodejs/24.16.0",
"recordType": "package",
"scrapedAt": "2026-05-30T10:00:00+00:00"
}

Output Fields

FieldTypeDescription
packageIdstringUnique package identifier
versionstringLatest version number
titlestringDisplay title of the package
descriptionstringFull package description
summarystringShort summary of the package
authorsstringPackage author(s)
tagsarrayTags for the package
downloadCountintegerTotal all-time download count
versionDownloadCountintegerDownloads for this specific version
publishedstringDate when this version was published
lastEditedstringDate when the package was last reviewed
projectUrlstringProject homepage URL
iconUrlstringPackage icon URL
licenseUrlstringLicense URL
requireLicenseAcceptancebooleanWhether license acceptance is required
isPrereleasebooleanWhether this is a prerelease version
isApprovedbooleanWhether the package is officially approved
packageStatusstringApproval status (Approved, Exempted, Submitted, etc.)
sourceUrlstringDirect link to the package page on Chocolatey
recordTypestringAlways "package"
scrapedAtstringISO 8601 timestamp of when the record was scraped

FAQ

Does this require authentication? No. The Chocolatey Community Repository NuGet v2 API is publicly accessible without any API key or login.

How many packages can I scrape? Up to 500 per run. For larger datasets, run multiple times with different search queries.

What does "Approved" mean? Chocolatey has a moderation process. Approved packages have been reviewed and verified by the Chocolatey team. Some packages are "Exempted" (well-known trusted publishers bypass the full moderation process).

What are the popular packages available? Common packages include: nodejs, python, git, googlechrome, firefox, 7zip, vlc, notepadplusplus, vscode, docker-desktop, and thousands more.

Can I search by tag? The search uses the package ID and tags. Searching for nodejs will find packages with "nodejs" in their ID or tags.

What is the data source? The Chocolatey Community Repository NuGet v2 OData API at https://community.chocolatey.org/api/v2/.