Abstract API · Schema
DomainInfo
Domain-level information
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | Domain extracted from email |
| domain_age | integer | Age of the domain in days |
| is_live_site | boolean | Whether the domain hosts a live website |
| registrar | string | Domain registrar name |
| registrar_url | string | URL of the registrar |
| date_registered | string | Date the domain was registered |
| date_last_renewed | string | Date the domain was last renewed |
| date_expires | string | Date the domain expires |
| is_risky_tld | boolean | Whether the TLD is associated with risky domains |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DomainInfo",
"title": "DomainInfo",
"type": "object",
"description": "Domain-level information",
"properties": {
"domain": {
"type": "string",
"description": "Domain extracted from email",
"example": "example.com"
},
"domain_age": {
"type": "integer",
"description": "Age of the domain in days",
"example": 9000
},
"is_live_site": {
"type": "boolean",
"description": "Whether the domain hosts a live website",
"example": true
},
"registrar": {
"type": "string",
"description": "Domain registrar name",
"example": "GoDaddy"
},
"registrar_url": {
"type": "string",
"format": "uri",
"description": "URL of the registrar",
"example": "https://www.godaddy.com"
},
"date_registered": {
"type": "string",
"format": "date",
"description": "Date the domain was registered",
"example": "2015-03-10"
},
"date_last_renewed": {
"type": "string",
"format": "date",
"description": "Date the domain was last renewed",
"example": "2025-03-10"
},
"date_expires": {
"type": "string",
"format": "date",
"description": "Date the domain expires",
"example": "2026-03-10"
},
"is_risky_tld": {
"type": "boolean",
"description": "Whether the TLD is associated with risky domains",
"example": false
}
}
}