接口功能介绍
查询域名列表及域名的基础信息
使用说明
单个用户一分钟限制调用10000次,并发不超过10
接口详情
请求方式:get
请求路径:/domain/query-domain-list
请求参数
参数 | 类型 | 名称 | 是否必填 | 说明 |
---|---|---|---|---|
domain | string | 域名 | 否 | 域名,不填默认所有域名 |
product_code | string | 产品类型 | 否 | 支持产品类型,“001”(静态加速);“003”(下载加速); “004”(视频点播加速);“005”(直播加速),不填默认所有产品 |
status | int | 域名状态 | 否 | 1(审核中);2(审核成功),3(配置中);4(已启用);5(停止中);6(已停止); 7(删除中);8(已删除);9(审核失败);10(配置失败);11(停止失败);12(删除失败),不填默认所有状态 |
area_scope | int | 加速范围 | 否 | 1(国内);2(海外);3(全球)(数字类型),不填默认1 |
page | int | 页码 | 否 | 不填默认1 |
page_size | int | 每页条数 | 否 | 不填默认50,最大100 |
响应参数
参数 | 类型 | 说明 |
---|---|---|
code | int | 状态码 |
message | string | 描述信息 |
total | int | 查询结果总条数 |
page | int | 当前页数 |
page_size | int | 每页条数 |
page_count | int | 查询结果总页数 |
result | list | 返回结果列表 |
result[*].domain | string | 域名 |
result[*].cname | string | cname |
result[*].product_code | string | 产品类型 |
result[*].product_name | string | 产品名称 |
result[*].status | int | 域名状态 |
result[*].insert_date | int | 域名创建时间,单位毫秒 |
result[*].area_scope | int | 加速范围 |
result[*].record_num | string | 备案号 |
示例
请求路径:https://cdnapi-global.ctapi.ctyun.cn/domain/query-domain-list
请求示例
https://cdnapi-global.ctapi.ctyun.cn/domain/query-domain-list?product_code=005
正常响应示例
{
"code": 100000,
"message": "success",
"total": 3,
"page": 1,
"page_count": 1,
"page_size": 50,
"result": [
{
"area_scope": 1,
"insert_date": 1660202139000,
"domain": "push.ctyun.cn",
"cname": "push.ctyun.cn.ctlcdn.cn",
"record_num": "京ICP备1号-163",
"product_code": "005",
"product_name": "直播加速",
"status": 4
},
{
"area_scope": 1,
"insert_date": 1659423011000,
"domain": "pull.ctyun.cn",
"cname": "pull.ctyun.cn.ctdns.cn",
"record_num": "京ICP备1号-65",
"product_code": "005",
"product_name": "直播加速",
"status": 4
}
]
}
错误码请参考:参数code和message含义