List AuthKeys
less than a minute
GET
Use this endpoint to get details for all active AuthKeys linked to your account, including their validity.https://www.digicert.com/services/v2/account/auth-keys
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
| 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. |
Was this page helpful?
Provide feedback