--- title: "Validation details" source_url: https://dev.digicert.com/certcentral-apis/services-api/domains/validation-details.html api_method: GET api_endpoint: "/services/v2/domain/{{domain_id}}/validation" api_url: "https://www.digicert.com/services/v2/domain/{{domain_id}}/validation" --- **GET** `https://www.digicert.com/services/v2/domain/{{domain_id}}/validation` Use this endpoint to get validation details for a domain. > **Info** > > **Domain validation reuse periods will continue to decrease** > > Due to industry-wide changes, the domain validation reuse period will continue to shorten over time. Starting February 24, 2026, the maximum domain validation reuse period will be 199 days. For existing pre-validated domains, the new expiration date must be calculated as the last validation date + 199 days. By 2029, the domain validation reuse period will be reduced to 10 days. For more information, see Domain validation reuse changes in 2026. ## Example requests and responses **cURL** ```bash curl -X GET \ 'https://www.digicert.com/services/v2/domain/{{domain_id}}/validation' \ -H 'Content-Type: application/json' \ -H 'X-DC-DEVKEY: {{api_key}}' ``` **Python** ```python import requests url = "https://www.digicert.com/services/v2/domain/{{domain_id}}/validation" headers = { 'X-DC-DEVKEY': "{{api_key}}", 'Content-Type': "application/json" } response = requests.request("GET", url, headers=headers) print(response.text) ``` **Go** ```go package main import ( "fmt" "net/http" "io/ioutil" ) func main() { url := "https://www.digicert.com/services/v2/domain/{{domain_id}}/validation" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("X-DC-DEVKEY", "{{api_key}}") req.Header.Add("Content-Type", "application/json") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) } ``` **NodeJS** ```javascript var request = require("request"); var options = { method: 'GET', url: 'https://www.digicert.com/services/v2/domain/{{domain_id}}/validation', headers: { 'Content-Type': 'application/json', 'X-DC-DEVKEY': '{{api_key}}' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); }); ``` ## 200 OK ```json { "validations": [ { "type": "ev", "name": "EV", "description": "Extended Organization Validation (EV)", "date_created": "2018-10-15T21:46:41+00:00", "validated_until": "2019-11-15T22:46:37+00:00", "status": "active", "dcv_status": "complete", "org_status": "complete", "verified_users": [ { "id": 15, "first_name": "Destinee", "last_name": "Church", "email": "destinee.church@outlook.com", "job_title": "Landscape Architect", "telephone": "101-656-8415" } ] }, { "type": "ov", "name": "OV", "description": "Normal Organization Validation", "date_created": "2018-10-15T21:46:49+00:00", "validated_until": "2019-11-15T22:46:49+00:00", "status": "active", "dcv_status": "complete", "org_status": "complete" } ] } ``` ## Response parameters
| Name | Type | Description |
|---|---|---|
| validations | array | List of validation details for the domain. |
| .. type | string | Validation type identifier. See Glossary – Validation types. |
| .. name | string | Name of the validation type. |
| .. description | string | Description of the validation type. |
| .. date_created | string | Timestamp of when the domain was validated. Format: UTC timezone and ISO 8601 date |
| .. validated_until | string | Timestamp of when the domain validation will expire. Format: UTC timezone and ISO 8601 date |
| .. status | string | Status of the validation. Possible values: pending, active |
| .. dcv_status | string | Domain control validation status. |
| .. org_status | string | Organization validation status. |
| .. verified_users | array | List of users that have been verified for the particular validation type. |
| .. .. id | int | User ID. |
| .. .. first_name | string | First name of user. |
| .. .. last_name | string | Last name of user. |
| string | Email address of user. | |
| .. .. job_title | string | Job title of user. |
| .. .. telephone | string | Telephone number of user. |