How to List Applications

Updated on 05 August, 2026

List every application available to deploy on Vultr, including one-click and Marketplace apps, and find each app's image ID for the Vultr Instances API.


Listing applications retrieves every app available to deploy on Vultr, including one-click apps and published Marketplace apps, along with each app's image_id. Use the image_id to deploy an instance through the Instances API.

This guide explains how to list applications using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Open the Vultr Console and start deploying a new server.

  2. Select a location and plan, then click Configure Software.

  3. Click the Marketplace App tile, then search for an app by name or browse the paginated list to see every available app.

Send a GET request to the List Applications endpoint. This endpoint is public and doesn't require an Authorization header.

console
$ curl "https://api.vultr.com/v2/applications?type=marketplace"

The response contains an applications array. Each entry includes id, name, short_name, deploy_name, type, vendor, and image_id.

Set type to all, marketplace, or one-click to filter the results, and omit it to return every type. Set per_page to control how many entries return per page, up to a maximum of 500. To fetch the next page, pass the value from meta.links.next as the cursor parameter.

Comments