سرویس رسمی ثبت دامنه و اطلاعات .AM
اطلاعات WHOIS Registrar.AM را در برنامههای خود ادغام کنید.
درخواست ساده HTTP GET برای دریافت دادههای ساختاریافته.
GET https://whois.registrar.am/api.php?domain={domain}
| پارامتر | نوع | توضیحات |
|---|---|---|
domain | string | نام دامنه .am را وارد کنید (مانند google.am) |
{
"domain": "GOOGLE.AM",
"status": "success",
"registrar": "INTMEN LLC",
"expiry_date": "2026-12-31",
"nameservers": [
"ns1.google.com",
"ns2.google.com"
],
"raw_data": "..."
}
سرور ما از پروتکل استاندارد RFC 3912 WHOIS پشتیبانی میکند.
# Querying via command line whois -h whois.registrar.am google.am
$json = file_get_contents("https://whois.registrar.am/api.php?domain=google.am");
$data = json_decode($json, true);
echo $data['registrar'];
import requests
response = requests.get("https://whois.registrar.am/api.php?domain=google.am")
print(response.json()['registrar'])
curl "https://whois.registrar.am/api.php?domain=google.am"