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.
Send a GET
request to the List API Keys endpoint to list all API keys for your current user account.
$ curl "https://api.vultr.com/v2/apikeys" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
(Optional) Send a GET
request to the Get API Key endpoint to retrieve detailed information for a single API key by using its ID.
$ curl "https://api.vultr.com/v2/apikeys/{apikey-id}" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
No comments yet.