Servicio oficial de registro e información de dominios .AM
Integre los datos de Registrar.AM WHOIS en sus propias aplicaciones.
Solicitud HTTP GET simple para recibir datos estructurados.
GET https://whois.registrar.am/api.php?domain={domain}
| Parámetro | Tipo | Descripción |
|---|---|---|
domain | string | Ingrese el dominio .am (ej. google.am) |
{
"domain": "GOOGLE.AM",
"status": "success",
"registrar": "INTMEN LLC",
"expiry_date": "2026-12-31",
"nameservers": [
"ns1.google.com",
"ns2.google.com"
],
"raw_data": "..."
}
Nuestro servidor soporta el protocolo estándar 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"