Build / developer platform

API & MCP

REST over HTTPS, JSON responses. Authenticate with an X-API-Key header. Free endpoints need no key.

Create an API key
ONE RECORD

Inspect

Pull the same domain view you see in the dashboard.

ONE GRAPH

Pivot

Expand from an IP, ASN, nameserver, certificate or verified page-content edge.

ONE CHANGE MODEL

Monitor

Compare regional page fingerprints and content anchors through the same evidence layer.

Free — no key

EndpointReturns
GET /openapi.jsonMachine-readable OpenAPI 3.0.3 contract
GET /v1/statsAggregate coverage counters
GET /v1/feedMost recent verdicts
GET /v1/nrd/today.txtToday's new domains, filtered, capped at 10,000

Domain profile

EndpointReturns
GET /v1/domains/{domain}Full record: DNS, certificate, verdict, relationships
GET /v1/domains/{domain}/contentTitle, description, headings, language, structured-data types, fingerprints
GET /v1/domains/{domain}/pagesPer-page metadata
GET /v1/domains/{domain}/sectionsPer-region fingerprints for change detection
GET /v1/domains/{domain}/certificatesCertificate history
GET /v1/domains/{domain}/similarRelated domains across every shared attribute
GET /v1/domains/{domain}/signalsRaw observation history

Similarity pivots

Given one attribute, every domain that shares it. Each response is capped and reports truncated.

EndpointQuestion
GET /v1/pivot/ip/{address}What else is hosted here?
GET /v1/pivot/ns/{nameserver}What else uses this DNS operator?
GET /v1/pivot/cert/{sha256}What else is on this certificate?
GET /v1/pivot/org/{organisation}What else belongs to this verified company?
GET /v1/pivot/favicon/{url}What else looks like this?
GET /v1/pivot/fingerprint/{simhash}Which domains are SimHash candidates? Verify exact page content before treating them as related.

Search

EndpointReturns
GET /v1/search?class=&lang=&jsonld=&has_contact=&limit= Domains matching a filter across verdict, language, structured data and contact presence

Example

curl -H "X-API-Key: $KEY" \
  https://138-199-132-133.sslip.io/v1/domains/example.com

curl -H "X-API-Key: $KEY" \
  "https://138-199-132-133.sslip.io/v1/search?class=active&lang=de&has_contact=1&limit=50"

curl -H "X-API-Key: $KEY" \
  https://138-199-132-133.sslip.io/v1/domains/example.com/similar

MCP server

The same dataset as tools an AI agent can call. Point any Model Context Protocol client at the endpoint below and it can look up domains and pivot through infrastructure on its own.

{
  "mcpServers": {
    "awtistik radar": {
      "url": "https://138-199-132-133.sslip.io/mcp",
      "headers": { "X-API-Key": "$KEY" }
    }
  }
}

Tools exposed: lookup_domain, find_related_domains, search_domains, get_domain_content, list_new_domains.