Receive domain alerts via email
Manage your domain watchlist. Get notified when domains become available or change status. Receive notifications via Email, Telegram, Slack, Discord, or Webhook.
Watch domains and get alerted the moment they become available.
Get notified before your domains expire so you never lose one.
Configure how you receive alerts for your monitored domains
Receive domain alerts via email
Receive domain alerts in your Telegram chat
Receive domain alerts in your Slack channel
Receive domain alerts in your Discord channel
Send domain alerts as JSON payloads to your server
Manage your domain watchlist. Get notified when domains become available or change status.
Brand MonitorMonitor domains for brand infringement and typosquatting threats.
Domain HealthComprehensive health check for a domain including DNS, SSL, website reachability, and security headers.
SSL CertificatesGet SSL certificate information including issuer, validity, and security grade.
Social Handle AvailabilityCheck if a username is available across major social media platforms.
Domain ReputationCheck domain reputation across multiple threat intelligence sources.
Use the browser tool for a fast answer, then move the same logic into scripts, monitoring, or product flows when it becomes repeatable.
Enter a domain, URL, IP, email, or record and get a focused result without setup.
Outputs highlight statuses, risks, records, and next actions instead of raw provider noise.
Use the request and response examples to turn a one-off check into an API call or recipe.
Each page is shaped around a practical operational question, not just a raw lookup.
See the current DNS, registration, security, pricing, or reputation evidence.
Compare the result with related checks so the next move is easier to trust.
Copy examples, open linked tools, or move into API documentation when you need scale.
Transparent docs, authenticated requests, and visible reliability details make it easier to evaluate DomScan before you ship.
OpenAPI, Swagger, Postman, CLI, SDK, and MCP links are one click away.
Authenticated endpoints use API keys with clear credit costs before you call them.
Start with 10,000 monthly credits and upgrade only when usage grows.
Start from the curl and HTTP samples, then map the parameters into your application code.
Watch domains and get alerted the moment they become available.
Get notified before your domains expire so you never lose one.
Receive notifications via Email, Telegram, Slack, Discord, or Webhook.
Use this secret to verify webhook signatures via the X-Signature-256 header.
await fetch('/v1/watchlist', {
credentials: 'include',
});
await fetch('/v1/watchlist', {
method: 'POST',
credentials: 'include',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
domain: 'example.com',
notify_email: 'alerts@example.com',
}),
});
await fetch('/v1/watchlist/available', {
credentials: 'include',
});
{
"watchlist": [
{
"domain": "example.com",
"status": "available",
"added_at": "2026-04-01T10:30:00Z",
"last_checked": "2026-04-14T08:30:00Z",
"expiry_date": "2027-04-01T00:00:00Z",
"days_until_expiry": 352,
"notify_email": "alerts@example.com",
"check_count": 9
}
],
"total": 1,
"updated_at": "2026-04-14T08:30:00Z"
}
The browser experience previews DomScan's structured endpoints, so teams can validate a use case before writing code.
Watch domains and get alerted the moment they become available. Get notified before your domains expire so you never lose one.
Receive notifications via Email, Telegram, Slack, Discord, or Webhook.
Send domain alerts as JSON payloads to your server Use this secret to verify webhook signatures via the X-Signature-256 header.