# AgentGate Domain Intelligence Enrichment

> AgentGate Domain Intelligence Enrichment is a paid API for AI agents from x402.agentsea.vn, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up a domain name and returns its resolved IP addresses and detected technology stack

## Facts

- Endpoint: POST https://x402.agentsea.vn/v1/intel/enrich-domain
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentgate-domain-intelligence-enrichment-cac54173
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gOKgwRmyCURS_AGjSHjn4

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 agentgate-domain-intelligence-enrichment-cac54173 -d '<json body>'
```

Example prompt: Can you look up github.com and tell me what IP addresses it resolves to and what technologies it's running — like whether it uses Cloudflare or any specific frameworks?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-request domain enrichment that returns both DNS resolution and technology fingerprinting in a single call, settled via x402 micro-payment in USDC — ideal for agents that need on-demand domain intelligence without a subscription.

## Known failure modes

- Invalid or malformed domain name returns an error or empty result
- Unregistered or unreachable domain may return empty IP arrays
- Rate limiting or payment failure may block the request
- Private or shielded domains behind full proxy may return limited technology signals

## How this service works

Dual-stack x402 & MPP autonomous payment gateway. Per-request micro-utilities for AI agents: clean web scraping ($0.001), prompt injection defense, and Solana token audit settled in USDC on Base L2 & Solana.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the queried domain name, an array of resolved IP addresses, and an array of detected technology names (e.g. CDNs, frameworks, CMS platforms).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "domain"
   ],
   "properties": {
    "domain": {
     "type": "string",
     "description": "Domain name to analyze, e.g. github.com"
    }
   }
  },
  "output": {
   "data": {
    "domain": "github.com",
    "ip_addresses": [
     "140.82.121.4"
    ],
    "technologies": [
     "Cloudflare",
     "Next.js"
    ]
   },
   "success": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "domain": "github.com",
   "ip_addresses": [
    "140.82.121.4"
   ],
   "technologies": [
    "Cloudflare",
    "Next.js"
   ]
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentgate-domain-intelligence-enrichment-cac54173/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentsea.vn](https://www.zero.xyz/host/x402.agentsea.vn/llms.txt)
