# ForgeMesh Article Extractor

> ForgeMesh Article Extractor is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Extracts clean article content (title, author, body text) from a public web page URL or raw HTML, stripping ads, menus, and sidebars

## Facts

- Endpoint: POST https://x402.forgemesh.io/article-extractor
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-article-extractor-78239636
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-F4eV7CEckz3qYGZwM1BD

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 forgemesh-article-extractor-78239636 -d '<json body>'
```

Example prompt: Pull the clean article text from this page — title, author, and body only, no ads or sidebars: https://www.bbc.com/news/technology-12345678

## When to prefer this

Use this endpoint when you need to extract clean, readable article text from a public URL or raw HTML and want crawl-permission compliance built in. Ideal for feeding LLM pipelines, building article archives, or preparing content for translation or TTS — especially when you want ads, menus, and boilerplate stripped automatically at low per-call cost ($0.005 USDC).

## Known failure modes

- URL is behind a paywall or login wall — content cannot be retrieved
- Site's robots.txt or crawl rules disallow access — pre-crawl permission check blocks the request
- URL points to a non-article page (homepage, search results) — no meaningful article body extracted
- Malformed or inaccessible URL — returns an error
- HTML input is too minimal or empty to extract meaningful content
- Network timeout reaching the target URL

## How this service works

Readable-article extraction API: strips a public web page down to its title, author line, and main body text, discarding menus, ads, and sidebars. A pre-crawl permission check runs first, honoring each site's crawl rules. Useful for building article archives, feeding LLM pipelines, or preparing pages for text-to-speech and translation.

## Output

Returns the article's title, author line, and main body text stripped of navigation, advertisements, sidebars, and other non-content elements, ready for downstream use in LLM pipelines, summarization, translation, or text-to-speech.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public web page URL"
  },
  "html": {
   "type": "string",
   "description": "Raw HTML alternative to url"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "title": "Micropayment",
  "markdown": "A **micropayment** is a financial transaction..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-article-extractor-78239636/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
