Vultr DocsLatest Content


List API Key

Updated on 17 September, 2025

List Vultr current user API keys to review, manage, and rotate credentials securely.


Listing API keys for the current user allows you to review active credentials, view access control, and manage key rotation securely. Regularly reviewing keys ensures you maintain proper access control and detect unused or compromised keys. Follow this guide to list your current user API keys in the Vultr Customer Portal or through the Vultr API.

  • Vultr Customer Portal
  • Vultr API
  1. Navigate to Dashboard and select Vultr API under Orchestration.
  2. In the User Access Tokens section, view all API keys associated with your current logged in user account, including their names, creation dates, and expiry information.
  1. Send a GET request to the List API Keys endpoint to list all API keys for your current user account.

    console
    $ curl "https://api.vultr.com/v2/apikeys" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. (Optional) Send a GET request to the Get API Key endpoint to retrieve detailed information for a single API key by using its ID.

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

Comments

No comments yet.