← 开发者工具

WHOIS 查询

GET /whois/:domain

查询任何域名的 WHOIS 注册数据。返回域名注册商、创建日期、到期日期、域名服务器、注册状态和可用的注册人联系信息。适用于域名研究工具、品牌保护监控、检查域名可用性和年龄、网站尽职调查和构建域名管理仪表板。

参数

domain 必填

Domain

请求示例

基本用法
curl https://nordapi.ee/api/v1/whois/google.com
WHOIS for google.com
curl https://nordapi.ee/api/v1/whois/google.com
WHOIS for nordapi.ee
curl https://nordapi.ee/api/v1/whois/nordapi.ee
WHOIS for github.com
curl https://nordapi.ee/api/v1/whois/github.com

实时响应

{
  "data": {
    "domain": "GOOGLE.COM",
    "expires": "2028-09-14T04:00:00Z",
    "last_changed": "2019-09-09T15:39:04Z",
    "links": [
      {
        "href": "https://rdap.verisign.com/com/v1/domain/GOOGLE.COM",
        "rel": "self"
      },
      {
        "href": "https://rdap.markmonitor.com/rdap/domain/GOOGLE.COM",
        "rel": "related"
      }
    ],
    "nameservers": [
      "NS1.GOOGLE.COM",
      "NS2.GOOGLE.COM",
      "NS3.GOOGLE.COM",
      "NS4.GOOGLE.COM"
    ],
    "registered": "1997-09-15T04:00:00Z",
    "registrar": "MarkMonitor Inc.",
    "status": [
      "client delete prohibited",
      "client transfer prohibited",
      "client update prohibited",
      "server delete prohibited",
      "server transfer prohibited",
      "server update prohibited"
    ]
  },
  "success": true
}