Free overview - quick domain health check with basic DNS
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain to check (e.g., google.com)"
}
},
"required": [
"domain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain to check (e.g., google.com)>"
}
}
'
Full DNS records - A, AAAA, MX, NS, TXT, CNAME
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain to lookup"
},
"types": {
"default": [
"A",
"AAAA",
"MX",
"NS",
"TXT"
],
"type": "array",
"items": {
"type": "string",
"enum": [
"A",
"AAAA",
"MX",
"NS",
"TXT",
"CNAME",
"SOA"
]
}
}
},
"required": [
"domain",
"types"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/dns/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain to lookup>",
"types": [
"A"
]
}
}
'
SSL certificate transparency data - issued certs, subdomains discovered
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain to lookup"
},
"limit": {
"default": 20,
"description": "Max certificates to return",
"type": "number"
}
},
"required": [
"domain",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/ssl/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain to lookup>",
"limit": 0
}
}
'
IP geolocation - resolve domain and get location, ISP, timezone
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain or IP address to lookup"
}
},
"required": [
"domain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/geoip/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain or IP address to lookup>"
}
}
'
HTTP headers analysis - security headers, server info, redirects
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain to check"
},
"followRedirects": {
"default": true,
"type": "boolean"
}
},
"required": [
"domain",
"followRedirects"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/headers/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain to check>",
"followRedirects": true
}
}
'
Comprehensive domain report - DNS, SSL, GeoIP, and headers combined
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain for full analysis"
}
},
"required": [
"domain"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://domain-intel-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"domain": "<Domain for full analysis>"
}
}
'