---
title: List Tickets
url: https://docs.vultr.com/platform/other/tickets/list
description: Guide to listing all open Vultr support tickets and retrieving specific ticket details via API.
publish_date: 2026-02-24T17:41:25.334000Z
last_updated: 2026-03-18T17:36:27.710922Z
---

# How to List Vultr Support Tickets

Support tickets allow communication with the Vultr support team for account inquiries, technical issues, and service requests. Listing tickets provides an overview of all open support requests on your account, while retrieving a specific ticket displays its detailed information.

This guide covers how to list all open support tickets and get information about a specific ticket using the Vultr API.

1. Send a `GET` request to the [**List Tickets** endpoint](https://www.vultr.com/api/#tag/tickets/operation/list-tickets) and note the target ticket's reference ID.

    ```console
    $ curl "https://api.vultr.com/v2/tickets" \
      -X GET \
      -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```

1. Send a `GET` request to the [**Get Ticket** endpoint](https://www.vultr.com/api/#tag/tickets/operation/get-ticket) to retrieve detailed information about the ticket.

    ```console
    $ curl "https://api.vultr.com/v2/tickets/{reference}" \
      -X GET \
      -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```
