# Jarvis Domain Intelligence API

> Jarvis Domain Intelligence API is a paid API for AI agents from api.jarvis-x402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns WHOIS registration details, DNS records (A, AAAA, MX, TXT, NS), and SSL certificate information for a given domain name.

## Facts

- Endpoint: POST https://api.jarvis-x402.com/dominio-pago
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jarvis-domain-intelligence-api-6d4ac239
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UkiPV1-gYqho469q98bio

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability jarvis-domain-intelligence-api-6d4ac239 -d '<json body>'
```

Example prompt: Can you pull up the full domain intelligence for example.com — WHOIS info, all DNS records, and SSL certificate details?

## When to prefer this

Choose this endpoint when you need a comprehensive all-in-one domain profile combining WHOIS ownership data, full DNS record set, and SSL certificate details in a single call, rather than querying separate WHOIS, DNS, and SSL tools individually. Ideal for domain investigation, security research, email troubleshooting, or pre-launch infrastructure verification tasks.

## Known failure modes

- Domain does not exist or is unregistered — returns empty or error response
- WHOIS data may be redacted for privacy-protected domains (GDPR/RDAP)
- DNS propagation lag may cause incomplete or stale record results
- SSL certificate data unavailable if domain has no HTTPS endpoint
- Invalid domain format in input causes validation error
- Rate limiting or upstream WHOIS/DNS resolver unavailability

## How this service works

Inteligencia de dominios: WHOIS (registrador, fechas, nameservers), registros DNS (A, AAAA, MX, TXT, NS) y certificado SSL.

## Output

Returns a structured object containing WHOIS details (registrar name, registration date, expiry date, updated date), DNS records by type (A, AAAA, MX, TXT, NS), nameserver list, and SSL certificate information (issuer, validity dates, subject) for the queried domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "dominio"
     ],
     "properties": {
      "dominio": {
       "type": "string",
       "description": "Nombre de dominio a analizar, ej: ejemplo.com"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jarvis-domain-intelligence-api-6d4ac239/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jarvis-x402.com](https://www.zero.xyz/host/api.jarvis-x402.com/llms.txt)
