Available in Classic and VPC
Get the list of validation information for a registered domain.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /api/v2/domain/domains |
Request headers
For information about the headers common to all Certificate Manager APIs, see Certificate Manager request headers.
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
page |
Integer | Optional | Page number
|
pageSize |
Integer | Optional | Page size
|
domainAddress |
String | Optional | Domain address |
dcvType |
String | Optional | Domain validation (DCV) type
|
orgNo |
Integer | Optional | Organization number |
validState |
String | Optional | Validation status
|
Request example
The request example is as follows:
curl --location --request GET 'https://certificatemanager.apigw.ntruss.com/api/v2/domain/domains?page=1&pageSize=10' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json' \
--header 'accept: application/json'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
returnCode |
String | - | Response code
|
returnMessage |
String | - | Response message |
totalRows |
Integer | - | Total number of lists searched |
domainVldList |
Array | - | Domain validation information list: domainVldList |
domainVldList
The following describes domainVldList.
| Field | Type | Required | Description |
|---|---|---|---|
dmnId |
Long | - | Domain ID |
memberNo |
String | - | Member number |
domainAddress |
String | - | Domain address |
dcvType |
String | - | Domain validation (DCV) type
|
validState |
String | - | Validation status
|
issueType |
String | - | Issuance type
|
orgNo |
Integer | - | Organization number |
validYn |
String | - | Validation status
|
validDate |
DateTime | - | Validation date |
createdDate |
DateTime | - | Creation date and time |
expireDate |
DateTime | - | Expiration date and time |
Response status codes
For information about the HTTP status codes common to all Certificate Manager APIs, see Certificate Manager response status codes.
Response example
The response example is as follows:
{
"returnCode": "0",
"returnMessage": "Success",
"totalRows": 9,
"domainVldList": [
{
"dmnId": 573,
"memberNo": "5000816",
"domainAddress": "test.ncp-cm.com",
"dcvType": "PTXT",
"validState": "PENDING",
"issueType": "CONSOLE",
"acmeAccountId": null,
"orgNo": null,
"persistUntil": null,
"validYn": "N",
"validDate": null,
"createdDate": "2026-04-16T17:11:20",
"expireDate": "2026-04-25T17:11:20"
}
]
}