List AuthKeys

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

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

{
  "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

NameTypeDescription
auth_key_idstringID of the created AuthKey.
auth_keystringYour DigiCert CertCentral® account’s AuthKey.
expiration_datetimestringUTC 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.