# Content Distribution Report

> Content Distribution 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-13).

Analyzes and summarizes how a website distributes content across Open Graph, RSS/Atom feeds, social channels, and blog surfaces.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/content-distribution-report
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-delx-ai-7eaca3c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KGfX5ojVgkCNgXvaQVuhr

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-7eaca3c2 -d '<json body>'
```

Example prompt: Can you pull a content distribution report for https://www.hubspot.com — I want to see how they spread content across Open Graph, feeds, and social surfaces?

## When to prefer this

Use this endpoint when you need a quick, structured audit of how a website distributes content externally — covering Open Graph, syndication feeds, and social presence — without needing a full website intelligence crawl. Ideal for content audits, competitive research, outreach preparation, or SEO diagnostics where social and feed surfaces are the focus.

## Known failure modes

- URL is unreachable or returns a non-200 status, resulting in an error or empty report
- Site blocks crawlers, leading to incomplete or missing metadata
- No feeds or social links are present on the page, resulting in empty arrays
- Malformed URL input causes a validation error
- Site uses JavaScript rendering, causing metadata to be invisible to the fetcher

## How this service works

Summarize how a site distributes content across Open Graph, feeds, socials, and blog surfaces.

## Output

A structured report summarizing the site's content distribution channels, including Open Graph metadata, RSS/Atom feed URLs, detected social media profile links, and blog or content surface signals found on the given website.

## 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": {
   "title": "Example Domain",
   "feed_count": 1,
   "has_open_graph": true,
   "social_channels": [
    "x"
   ]
  },
  "tool_name": "util_content_distribution_report"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-7eaca3c2/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)
