How to List All Organizations

Updated on 08 April, 2026

Retrieve a list of all organizations associated with your Vultr account. View organization details including names, IDs, types, and creation timestamps.


Organizations in Vultr's IAM system represent the top-level entity under which users, groups, roles, and policies are managed. Each organization can be a Personal, Team, Business, or Enterprise type, and serves as the boundary for access control and resource management.

This guide explains how to retrieve a list of all organizations associated with your Vultr account using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Log in to the Vultr Console.

  2. Click the organization name in the top navigation bar.

    The dropdown displays all the organization names you are a member of.

Send a GET request to the List Organizations endpoint to retrieve all organizations associated with your account.

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

The response contains the requested resources.

Comments