Catalog/osint-domain-pivot

OSINT

RDAP domain pivot API

Resolve a domain via the keyless RDAP protocol to registrar, registrant org, nameservers, and status, then surface pivot leads (reverse-nameserver and reverse-registrant) for chasing related domains. The value-add is the relationship surfacing: unwinding RDAP's entity/vcard graph, normalizing nameservers to their apex providers, and emitting ready-to-run pivots without fabricating data. Answers 'who registered this domain', 'nameservers of X', 'what is the registrar', 'how do I pivot to related domains from this one'.

Price$0.01per request
MethodPOST
Route/v1/osint/domain-pivot
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
osintrdapdomainpivotwhoisnameserverregistrarrecon
API URLhttps://x402.hexl.dev/v1/osint/domain-pivot
Integration docs
Example request
{
  "domain": "example.com"
}
Example response
{
  "domain": "example.com",
  "registered": true,
  "registrar": "MarkMonitor Inc.",
  "registrantOrg": "Example LLC",
  "createdAt": "2010-01-01T00:00:00Z",
  "status": [
    "client transfer prohibited"
  ],
  "nameservers": [
    "ns1.cloudflare.com",
    "ns2.cloudflare.com"
  ],
  "nameserverProviders": [
    "cloudflare.com"
  ],
  "sharedProviderCount": 1,
  "pivots": [
    {
      "type": "reverse-nameserver",
      "on": "cloudflare.com",
      "description": "Other domains using cloudflare.com nameservers",
      "url": "https://www.google.com/search?q=%22cloudflare.com%22%20nameserver"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "examples": [
        "example.com"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}