How to List Application Builds

Updated on 05 August, 2026

List a Vultr Marketplace app's image builds using the Vultr Console or Vultr API to review build IDs, statuses, and the history of each application image.


Listing an application's builds retrieves every image built for it, including each build's id, version, and live status.

This guide explains how to list an application's builds using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Click Marketplace in the Vultr Console's left-hand menu.

  2. Click the application name to open the Edit App screen.

  3. Click the Builds tab.

    Verify that the tab lists every build, along with its version and status.

Send a GET request to the List Marketplace App Builds endpoint. Replace {app-id} with the app's ID.

console
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}/builds" \
    -X GET \
    -H "Authorization: Bearer ${VULTR_API_KEY}"

The response contains a marketplace_app_builds array. Each entry includes id, version, live, date_created, use_vendor_data, installation_script, OSID, snapshot_id, and snapshot_description.

Comments