Domains registered at the same moment.

Pass a seed domain. Get back domains registered within a configurable window around the seed's registration. Useful for catching campaign infrastructure registered together.

WHAT THIS API RETURNS

Co-registration as a discovery signal.

The Same Time Registered Domain Finder API surfaces domains registered close in time to a seed. Time-clustered registration is a common adversary signal: campaign infrastructure registered in a single batch, brand-impersonation runs registered together, or a coordinated drop across a registrar account.

Pass the seed domain and the interval parameter to define the window in minutes around the seed's registration timestamp. Default is a tight window; widen it when the campaign is suspected to span hours.

This is the API the IR and brand-protection teams reach for when one suspicious registration surfaces and they need the rest of the batch.

REQUEST

One endpoint, one required parameter.

Endpoint:

GET https://api.deepinfo.com/v1/discovery/sametime-domain-finder?domain={domain}

Parameters:

Name In Type Required Description
domain query string Yes Seed domain whose registration timestamp anchors the window.
interval query integer No Window size in minutes around the seed's registration timestamp. Default is a per-endpoint tight value; see docs.
include_subdomains query boolean No When true, surface FQDNs in addition to apex domains.
page query integer No Page number for paginated responses. Defaults to 1.
page_size query integer No Page size for paginated responses. Defaults to a sensible per-endpoint limit; see docs.
ordering query string No Field to sort by; prefix with - for descending order.
export query boolean No When true, returns the full result set as a downloadable export instead of paginated JSON.
export_format query enum No Format of the export when export=true. Typically json or csv.
export_scope query enum No Subset of fields to include in the export. See the docs for per-endpoint scopes.

Authentication is by API token in the request header. See docs.deepinfo.com for the full request reference.

SAMPLE RESPONSE

See what the API returns.

Real response structure for the Domains registered at the same moment endpoint. Field coverage may vary based on query parameters and data availability.

JSON RESPONSE
{
  "_request": {"domain": "acme-secure-login.com", "interval": 10},
  "seed": {"domain": "acme-secure-login.com", "create_date": "2026-04-30T14:23:08Z"},
  "results": [
    {"fqdn": "acme-account-verify.com", "create_date": "2026-04-30T14:23:11Z", "delta_seconds": 3},
    {"fqdn": "acme-login-portal.net",   "create_date": "2026-04-30T14:23:14Z", "delta_seconds": 6},
    {"fqdn": "acme-secure-portal.io",   "create_date": "2026-04-30T14:23:18Z", "delta_seconds": 10},
    {"fqdn": "acme-verify-account.com", "create_date": "2026-04-30T14:23:21Z", "delta_seconds": 13}
  ],
  "pagination": {"page": 1, "page_size": 50, "total": 18}
}
STRUCTURED VIEW
Request
Domain
acme-secure-login.com
Interval
10
Seed
Domain
acme-secure-login.com
Create date
2026-04-30T14:23:08Z
Results
Count
4
First fqdn
acme-account-verify.com
First create date
2026-04-30T14:23:11Z
First delta seconds
3
Pagination
Page
1
Page size
50
Total
18

Sample response shown. Real responses depend on query parameters, data availability, and API version. Talk to us for full schema documentation.

“Catching campaign infrastructure registered in clusters is the signal we tune our highest-priority alerts on. The configurable time window per request fits how attackers actually batch their registrations.”

— Lead Detection Engineer, Anti-Phishing Platform
GET STARTED

Cluster a campaign batch, from any seed.

We'll set up token access and discuss interval tuning for your detection workflows.

Talk to us Browse API docs