---
title: List API Key
url: https://docs.vultr.com/platform/other/api/other-user/list-api-key
description: List Vultr user API keys with admin access to audit, monitor, and manage credentials.
publish_date: 2025-09-17T17:00:22.819975Z
last_updated: 2025-09-17T17:00:45.748733Z
---

Listing a user's API keys allows you to audit active credentials, monitor usage, and manage key rotation effectively. Regularly reviewing API keys helps maintain security by identifying unused or outdated credentials.

> [!NOTE]
> This guide covers listing API Keys for other users. You must have root or administrator account credentials in Vultr to perform these actions.

Follow this guide to list a user's API keys in the Vultr Console or through the Vultr API.

=== "Vultr Console"

    1. Navigate to **Account** and select **Users** under **OTHER**.
    1. Select the user from the list and click the **Edit User** icon.
    1. Scroll to the `User Access Tokens` section to view all API keys associated with the user.

=== "Vultr API"

    1. Send a `GET` request to the [**Get Users** endpoint](https://www.vultr.com/api/#tag/users/operation/list-users) to list all users.

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

        Note the `id` of the user whose API keys you want to list.

    1. Send a `GET` request to the [**List User API Keys** endpoint](https://www.vultr.com/api/#tag/users/operation/list-user-api-keys) to list all keys for that user.

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

    1. (Optional) Send a `GET` request to the [**Get User API Key** endpoint](https://www.vultr.com/api/#tag/users/operation/get-user-api-key) to retrieve details for a single key by ID.

        ```console
        $ curl "https://api.vultr.com/v2/users/{user-id}/apikeys/{apikey-id}" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```
