All Products
Search
Document Center

Security Center:DescribeDomainList

Last Updated:May 22, 2025

Queries the information about the domain assets within your Alibaba Cloud account.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
SourceIpstringNo

The source IP address of the request.

192.122.XX.XX
FuzzyDomainstringNo

The keyword that is used to query domain names. Fuzzy match is supported.

sas
DomainTypestringNo

The type of the domain name that you want to query. Valid values:

  • root: root domain name
  • sub: subdomain name
root
PageSizeintegerNo

The number of entries to return on each page. Default value: 10.

10
CurrentPageintegerNo

The number of the page to return. Default value: 1.

1

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request, which is used to locate and troubleshoot issues.

0B48AB3C-84FC-424D-A01D-B9270EF46038
PageInfoobject

The pagination information.

CurrentPageinteger

The page number of the returned page.

10
PageSizeinteger

The number of entries returned per page. Default value: 10.

10
TotalCountinteger

The total number of entries returned.

27
Countinteger

The number of entries returned on the current page.

10
DomainListResponseListarray<object>

An array that consists of the information about domain names.

DomainResponseobject
IpListstring

The IP addresses of the domain name.

1.2.XX.XX,1.0.XX.XX
Domainstring

The name of the domain or website.

example.com

Examples

Sample success responses

JSONformat

{
  "RequestId": "0B48AB3C-84FC-424D-A01D-B9270EF46038",
  "PageInfo": {
    "CurrentPage": 10,
    "PageSize": 10,
    "TotalCount": 27,
    "Count": 10
  },
  "DomainListResponseList": [
    {
      "IpList": "1.2.XX.XX,1.0.XX.XX",
      "Domain": "example.com"
    }
  ]
}

Error codes

HTTP status codeError codeError messageDescription
403NoPermissioncaller has no permissionYou are not authorized to do this operation.
500ServerErrorServerError-

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2022-12-23API Description Update. The API operation is not deprecated.View Change Details