# M0 URL Extraction & Lead Intelligence

> M0 URL Extraction & Lead Intelligence is a paid API for AI agents from m0.aiverall.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches a public URL and returns clean extracted text content, plus optional pre-flight lead-quality signals for validating leads before enrichment or outreach.

## Facts

- Endpoint: POST https://m0.aiverall.com/v1/extract
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/m0-url-extraction-lead-intelligence-3411060c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dLy6m7J_9czGnz9EehLhp

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 m0-url-extraction-lead-intelligence-3411060c -d '<json body>'
```

Example prompt: Fetch the content of https://techcrunch.com/2024/01/15/openai-funding/ and give me the clean text — I want just the article body, no HTML noise.

## When to prefer this

Choose this endpoint when you need to fetch and extract clean text from a public URL without setting up third-party scraping infrastructure or browser dependencies. It is especially well-suited for AI agent pipelines that need to ingest web content directly, and for lead qualification workflows where you want a cost-effective pre-flight check before spending on richer enrichment or outreach. At $0.002 per call, it is economical for high-volume content extraction tasks.

## Known failure modes

- URL is not publicly accessible or returns a non-200 status code
- Content is too large and gets truncated (truncated_download: true)
- URL redirects to a paywalled or login-required page, yielding little useful content
- Network timeout or DNS resolution failure for the target URL
- JavaScript-rendered content may not be captured if the page requires a browser to render

## How this service works

Machine-native capabilities for agents. Primary: URL Extraction -- fetch a public URL, get back clean text, no third-party dependency. Also available: pre-flight lead-quality signals before spending money enriching, contacting, or storing a lead.

## Output

Returns a JSON object containing the extracted clean text content of the fetched URL, the page title, HTTP status code, content type, final redirect URL, and metadata including bytes downloaded and flags indicating whether content or download was truncated.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "format": "json",
 "example": {
  "url": "https://example.com",
  "title": "Example Domain",
  "status": 200,
  "content": "This domain is for use in illustrative examples...",
  "version": "m0-email-verify-v1",
  "metadata": {
   "bytes_downloaded": 1256,
   "truncated_content": false,
   "truncated_download": false
  },
  "final_url": "https://example.com",
  "content_type": "text/html; charset=utf-8"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/m0-url-extraction-lead-intelligence-3411060c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from m0.aiverall.com](https://www.zero.xyz/host/m0.aiverall.com/llms.txt)
