How to List All Clusters

Updated on 21 April, 2026

Retrieve all cluster subscriptions associated with your Vultr account using the API with cursor-based pagination support for large result sets.


Listing clusters retrieves all cluster subscriptions associated with your account, including their status, region, attached instance count, and configuration details. The endpoint supports cursor-based pagination for accounts with many clusters.

This guide explains how to list all clusters using the Vultr API.

Send a GET request to the List Clusters endpoint to retrieve all clusters.

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

The response contains all clusters with their details. Use the cursor and per_page query parameters to paginate through large result sets.

Comments