# Website Intelligence Report

> Website Intelligence Report is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a composite intelligence report for any URL, including page metadata, internal/external links, RSS/Atom feeds, forms, and contact signals.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/website-intelligence-report
- 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/api-delx-ai-d84eccac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2vV4J-l2C2tivNlXNERYw

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 api-delx-ai-d84eccac -d '<json body>'
```

Example prompt: Pull a full intelligence report on https://acme.com — I want the page metadata, all internal and external links, any RSS or Atom feeds, forms on the page, and any contact signals like emails, phones, or social profiles.

## When to prefer this

Use this endpoint when you need a single-call composite snapshot of a website rather than making multiple targeted calls for metadata, links, feeds, and contacts separately. Ideal for lead enrichment pipelines, site auditing agents, or any workflow that needs breadth of website intelligence quickly and cheaply.

## Known failure modes

- URL is unreachable or returns non-200 status — report may be empty or partial
- Private or login-gated pages return limited data with no authenticated content
- Dynamically rendered single-page apps may yield sparse link/form data without JavaScript execution
- Malformed or missing URL input returns a 400-level error
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Website content extraction API for agents: one $0.01 USDC call returns a website intelligence report with page metadata, readable signals, docs map, pricing hints, contacts, forms, feeds and crawl guidance—not general web search and not a multi-URL crawl farm.

## Output

A composite JSON report containing page metadata (title, description, canonical URL), discovered internal and external links, RSS/Atom feed URLs, HTML forms with their fields and actions, and contact signals such as email addresses, phone numbers, and social media profile links.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "page": {
    "title": "Example Domain"
   },
   "summary": {
    "title": "Example Domain",
    "has_feeds": false,
    "has_forms": false,
    "has_contacts": false
   }
  },
  "tool_name": "util_website_intelligence_report"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-d84eccac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
