ChromiumBuilds

JSON API

Static JSON, no key, no rate limit, CORS-open. Regenerated on the same schedule as the site, so an updater script can poll it directly.

Checked automatically Aug 29, 2026. Latest Chromium stable is 152.0.7977.64.

Endpoints

EndpointReturns
/api/v1/builds.jsonEvery tracked build with all downloads, checksums and metadata.
/api/v1/latest.jsonOne flat row per build with the preferred download URL. The best endpoint for an updater.
/api/v1/upstream.jsonCurrent upstream Chromium stable, beta, dev and canary versions with revisions.
/api/v1/windows.jsonWindows builds only.
/api/v1/macos.jsonmacOS builds only.
/api/v1/linux.jsonLinux builds only.
/api/v1/android.jsonAndroid builds only.
/api/v1/distros.jsonChromium version currently packaged by each Linux distribution.

Example

# newest Windows x64 build that is level with upstream stable
curl -s https://chromiumbuilds.org/api/v1/windows.json \
  | jq -r '.builds[] | select(.arch[0]=="x64" and .freshness=="current")
           | "\(.name) \(.version) \(.downloads[0].url)"'

Field notes

Using it

Please poll no more than hourly; the data only changes when a maintainer publishes. If you are replacing a dead update endpoint in an existing tool, latest.json is the closest shape. The generator is open source, so you can also just run it yourself.