domains-monitor.com APIdomains-monitor.com ↗
Access 1,500+ TLD zone metadata, free domain sample lists, and domain search via the Domains Monitor API. 7 endpoints for zone counts, update timestamps, and more.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/5a7460d8-7452-4ea8-9794-7875c9570f55/get_freelists_page' \ -H 'X-API-Key: $PARSE_API_KEY'
Scrape the /freelists/ page and extract all domain names shown in the free preview lists for all available zones. Returns a dictionary keyed by zone name with arrays of sample domains.
No input parameters required.
{
"type": "object",
"fields": {
"com": "array of sample .com domain strings",
"net": "array of sample .net domain strings",
"org": "array of sample .org domain strings"
},
"sample": {
"data": {
"com": [
"cerdafiednj.com",
"corleyz.com",
"orbautos.com"
],
"net": [
"tmsalida.net",
"racing89.net",
"prixalgerie.net"
],
"org": [
"kenenete.org",
"maticrepse-home-lj.org",
"cyberwebsite.org"
]
},
"status": "success"
}
}About the domains-monitor.com API
The Domains Monitor API exposes 7 endpoints covering domain zone metadata for 1,500+ supported TLDs, free sample domain lists across major zones, and keyword-based domain search. The get_domainzones_page endpoint returns every zone with its domain count and last-updated timestamp, while get_freelist_by_zone pulls up to 100 sample domains for a specific TLD. Token-authenticated endpoints extend access to full zone enumeration and PRO-tier search.
Zone Metadata and Coverage
The get_domainzones_page endpoint returns an array of zone objects, each containing a zone string, an updated timestamp, and a count integer reflecting the number of domains in that zone. The total_count field in the response confirms the full breadth of coverage — currently 1,500+ zones. No parameters are required. The get_all_zones endpoint provides a flat list of zone strings and accepts an optional format parameter for json or xml output; it requires a valid API token.
Free Domain Sample Lists
get_freelists_page retrieves sample domain arrays keyed by zone name — com, net, org, and others — in a single call with no inputs. For targeted retrieval, get_freelist_by_zone accepts a zone string (e.g. de, ru, nl, fr) and returns the zone name alongside a domains array of up to 100 sample domain strings. aggregate_and_export_freelists combines all zones into one randomized aggregated_domains array and reports a total_count alongside an informational note field.
Search and Account Management
search_domains requires a query string of at least 3 characters and an API token. An optional zone parameter narrows results to a specific TLD or accepts full to search across all zones. The response includes a total integer and a results array of matching domain strings. This endpoint requires a PRO subscription. The get_account_details endpoint accepts a token and returns a subscription string and a usage object describing current consumption and token validity.
- Build a TLD coverage dashboard using zone
countandupdatedfields fromget_domainzones_page - Seed a domain availability checker with sample domains from
get_freelist_by_zonefor specific TLDs like.deor.fr - Generate randomized domain datasets for testing using
aggregate_and_export_freelists - Monitor when specific zone files were last updated using the
updatedtimestamps returned per zone - Validate a user-submitted domain against known zones by checking the full list from
get_all_zones - Search for brand-keyword domains across all zones using the
queryandzoneparams ofsearch_domains - Audit subscription status and API consumption programmatically via
get_account_details
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Domains Monitor have an official developer API?+
What does `get_freelist_by_zone` return and which zones are supported?+
zone string and a domains array of up to 100 sample domain names for the requested zone. Supported values include common TLDs like com, net, org, info, gov, edu and country-code zones such as de, ru, uk, nl, fr, and us. The full list of 1,500+ zones is available via get_domainzones_page.Does the API return full zone file downloads or complete domain lists?+
aggregate_and_export_freelists endpoint combines those samples across zones into one randomized array. Full zone-file access is not currently exposed through these endpoints. You can fork this API on Parse and revise it to add an endpoint targeting larger dataset downloads if Domains Monitor exposes them under your subscription tier.What does the `updated` field from `get_domainzones_page` represent?+
Can I filter `search_domains` results by registration date or domain status?+
search_domains endpoint returns a total count and a results array of domain strings matched by keyword, with optional filtering by zone. Attributes like registration date, expiry, or WHOIS status are not included in the response. You can fork this API on Parse and revise it to add an endpoint that retrieves per-domain detail if Domains Monitor surfaces that data.