เอกสาร API
เอกสาร API สำหรับการค้นหาโดเมน WHOIS และ RDAP แบบโปรแกรม
ค้นหาโดเมน
URL คำขอ
GET https://whois.litelake.com/api/whois?domain={domain}พารามิเตอร์
| พารามิเตอร์ | ประเภท | จำเป็น | คำอธิบาย |
|---|---|---|---|
| domain | string | ใช่ | ชื่อโดเมนที่ต้องการค้นหา (เช่น example.com) |
| force_refresh | boolean | ไม่ | บังคับรีเฟรชข้อมูลที่แคช |
ตัวอย่างการตอบกลับ
{
"code": 200,
"message": "Query successful",
"data": {
"domain": "example.com",
"tld": "com",
"registrar": "Example Registrar, Inc.",
"registry_domain_id": "123456789_DOMAIN_COM-VRSN",
"created_date": "1995-08-14T04:00:00Z",
"updated_date": "2023-08-14T04:00:00Z",
"expiry_date": "2024-08-13T04:00:00Z",
"status": ["clientTransferProhibited"],
"name_servers": ["ns1.example.com", "ns2.example.com"],
"query_count": 150,
"last_queried_at": "2024-03-05T12:34:56Z"
}
}การตอบกลับข้อผิดพลาด
400 Bad Request
{
"code": 400,
"message": "Missing domain parameter"
}404 Not Found
{
"code": 404,
"message": "Domain not found"
}429 Too Many Requests
{
"code": 429,
"message": "Rate limit exceeded, please try again later"
}500 Internal Server Error
{
"code": 500,
"message": "Query failed, please try again later"
}