--- title: "List AuthKeys" source_url: https://dev.digicert.com/certcentral-apis/services-api/account/list-authkeys.html api_method: GET api_endpoint: "/services/v2/account/auth-keys" api_url: "https://www.digicert.com/services/v2/account/auth-keys" --- **GET** `https://www.digicert.com/services/v2/account/auth-keys` Use this endpoint to get details for all active AuthKeys linked to your account, including their validity. ## Example requests and responses ## cURL ```bash curl -X GET \ https://www.digicert.com/services/v2/account/auth-keys \ -H 'Content-Type: application/json' \ -H 'X-DC-DEVKEY: {{api_key}}' ``` ## 200 OK ```json { "auth_keys": [ { "auth_key_id": "auth_key_id1", "auth_key": "api_key1" }, { "auth_key_id": "auth_key_id2", "auth_key": "api_key2", "expiration_datetime": "2025-06-06T18:24:09+00:00" }, { "auth_key_id": "auth_key_id3", "auth_key": "api_key3", "expiration_datetime": "2025-08-05T18:41:45+00:00" } ] } ``` ## Response body
Name Type Description
auth_key_id string ID of the created AuthKey.
auth_key string Your DigiCert CertCentral® account's AuthKey.
expiration_datetime string UTC timestamp (ISO 8601 format) representing the expiration date and time of the AuthKey.
Note: Permanent AuthKeys omit the expiration_datetime parameter as they have no expiration. Time-to-Live (TTL) AuthKeys include the expiration_datetime parameter to specify their expiration timestamp.