---
title: Create Tickets
url: https://docs.vultr.com/platform/other/tickets/create
description: Guide to creating a new Vultr support ticket using the Tickets API with subject and description.
publish_date: 2026-02-24T17:42:28.891375Z
last_updated: 2026-03-18T17:36:30.719096Z
---

# How to Create a Vultr Support Ticket

Creating a support ticket initiates a new support request with the Vultr team. Each ticket requires a subject line and a description that serves as the first entry in the ticket conversation.

This guide covers how to create a new support ticket using the Vultr API.

1. Send a `POST` request to the [**Create Ticket** endpoint](https://www.vultr.com/api/#tag/tickets/operation/create-ticket) with the ticket subject and description in the request body.

    ```console
    $ curl "https://api.vultr.com/v2/tickets" \
      -X POST \
      -H "Authorization: Bearer ${VULTR_API_KEY}" \
      -H "Content-Type: application/json" \
      --data '{
        "subject": "Ticket subject",
        "description": "Detailed text describing the reason for this ticket."
      }'
    ```
