• November 22, 2025

How to Add Tags on a Vultr VX1™ Cloud Compute Instance

How to Add Tags on a Vultr VX1™ Cloud Compute Instance

Add and manage tags on your Vultr VX1™ Cloud Compute instance using the Customer Portal or API for better organization.


Tagging allows you to assign specific labels, known as tags, to an instance for improved identification in your Vultr account. Tags consist of multiple characters that help identify, organize, and manage instances in your Vultr account.

Follow this guide to add tags on a Vultr VX1™ Cloud Compute instance using the Vultr Customer Portal, or API.

Vultr Customer Portal

  1. Navigate to Products and click Compute.
  2. Click your target Vultr VX1™ Cloud Compute instance to open its management page.
  3. Navigate to the Tags tab.
  4. Enter a new tag in the Add Tag field and click Add to apply the new tag.

Vultr API

  1. Send a GET request to the List Instances endpoint and note your target instance’s ID.
    console
    $ curl "https://api.vultr.com/v2/instances" \
      -X GET \
      -H "Authorization: Bearer ${VULTR_API_KEY}"
  2. Send a PATCH request to the Update Instance endpoint to add tags to the instance.
    console
    $ curl "https://api.vultr.com/v2/instances/{instance-id}" \
      -X PATCH \
      -H "Authorization: Bearer ${VULTR_API_KEY}" \
      -H "Content-Type: application/json" \
      --data '{
        "tags" : ["tag1", "tag2"]
      }'

    If successful, you receive a 200 status code response.

Leave a Reply

Your email address will not be published. Required fields are marked *