Build / developer platform
API & MCP
REST over HTTPS, JSON responses. Authenticate with an X-API-Key
header. Free endpoints need no 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
| Endpoint | Returns |
|---|---|
| GET /openapi.json | Machine-readable OpenAPI 3.0.3 contract |
| GET /v1/stats | Aggregate coverage counters |
| GET /v1/feed | Most recent verdicts |
| GET /v1/nrd/today.txt | Today's new domains, filtered, capped at 10,000 |
Domain profile
| Endpoint | Returns |
|---|---|
| GET /v1/domains/{domain} | Full record: DNS, certificate, verdict, relationships |
| GET /v1/domains/{domain}/content | Title, description, headings, language, structured-data types, fingerprints |
| GET /v1/domains/{domain}/pages | Per-page metadata |
| GET /v1/domains/{domain}/sections | Per-region fingerprints for change detection |
| GET /v1/domains/{domain}/certificates | Certificate history |
| GET /v1/domains/{domain}/similar | Related domains across every shared attribute |
| GET /v1/domains/{domain}/signals | Raw observation history |
Similarity pivots
Given one attribute, every domain that shares it. Each response is capped and
reports truncated.
| Endpoint | Question |
|---|---|
| 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
| Endpoint | Returns |
|---|---|
| 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.