How to Get an Application

Updated on 05 August, 2026

Retrieve a Vultr Marketplace application's details using the Vultr Console or Vultr API to inspect its profile, configuration, and current publication state.


Retrieving a single application returns its full profile, including fields not shown in the list view, such as icon_light, icon_dark, readme, and instructions.

This guide explains how to retrieve a single application's profile 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 its Edit App screen.

    Verify that the General Information tab displays the app's current profile.

Send a GET request to the Get Application endpoint. Replace {app-id} with the app's id from How to List Marketplace Apps.

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

The response contains an app object with the application's full profile.

Comments