Domain Expiration Date Checker
Under maintenancePricing
Pay per usage
Go to Apify Store
Domain Expiration Date Checker
Under maintenanceCheck when domain registration expires via WHOIS lookup. Perfect for domain investors, website buyers, and security teams.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
BotFlowTech
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
24 days ago
Last modified
Categories
Share
Check when domain registration expires via WHOIS lookup. Perfect for domain investors, website buyers, and security teams.
Features
- Bulk domain expiration checking
- WHOIS data extraction
- Days until expiration calculation
- Registrar and status information
- Error handling for invalid domains
- Rate limiting to prevent blocking
Input
- domains (required): Array of domain names to check (e.g.,
example.com,google.com) - proxyConfiguration (optional): Proxy settings for WHOIS lookups
Output
Each domain returns:
domain: Domain name checkedexpirationDate: Domain expiration datecreationDate: Domain creation dateregistrar: Domain registrar namestatus: Domain statusdaysUntilExpiration: Days remaining until expirationsuccess: Whether the check was successfultimestamp: When the check was performed
Usage
Via Apify Console
- Add domains to check (one per line)
- Run the actor
- View results in the dataset
Via API
const input = {domains: ["example.com","google.com","github.com"]};const run = await client.actor("YOUR_USERNAME/domain-expiration-checker").call(input);const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);