# apiacre.com Web Extract

> apiacre.com Web Extract is a paid API for AI agents from apiacre.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts clean text or Markdown from a public web page URL via POST request.

## Facts

- Endpoint: POST https://apiacre.com/v1/web/extract
- 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/apiacre-com-web-extract-bc9bcb6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pxziMLGhnRH1nujMIZyYn

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 apiacre-com-web-extract-bc9bcb6f -d '<json body>'
```

Example prompt: Can you pull the clean readable text from this page — https://example.com/article/2024/some-post — and give it to me as Markdown?

## When to prefer this

Choose this endpoint when you need clean, readable text or Markdown from a single public web page and don't need structured data (rows/tables) or document file parsing. It is ideal for article extraction, research ingestion, and LLM pre-processing pipelines. Prefer the sibling 'Extract structured rows' endpoint if you need tabular data, or 'Extract text from documents' if you have a file (PDF, DOCX) rather than a URL.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error
- Page is JavaScript-rendered and content is not in static HTML — may return incomplete text
- Invalid or malformed URL input — returns a validation error
- Rate limiting or network timeout reaching the target page — returns a fetch error
- Page returns non-200 HTTP status — extraction fails with an error

## How this service works

Convert and extract a public website URL into clean Markdown or readable text plus bounded structured links, canonical and heading signals, Schema.org types, redirect evidence, content hashes, and response provenance for RAG, research, or agent context.

## Output

Returns the extracted content of the target public web page as either clean plain text or Markdown, with HTML markup, navigation, and boilerplate removed — leaving only the readable body content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "output": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "url": "https://example.com/",
   "links": {
    "detected": 1,
    "external": 1,
    "internal": 0,
    "returned": 1,
    "truncated": false
   },
   "title": "Example Domain",
   "words": 19,
   "format": "markdown",
   "sha256": "5945db6fd8137aa377638814ca9bb1ac0a663fd90a97f11f86c3f5c09cfb40e3",
   "content": "# Example Domain\n\nThis domain is for use in documentation examples without ne...",
   "language": "en",
   "response": {
    "bytes": 559,
    "elapsedMs": 36,
    "bodySha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d",
    "statusCode": 200,
    "contentType": "text/html"
   },
   "characters": 167,
   "extraction": {
    "method": "bounded HTML DOM extraction",
    "version": "apiacre-content-extract/3",
    "limitations": [
     "Client-rendered content is not executed.",
     "Markdown preserves readable block text, not the complete page layout.",
     "Structured links are bounded and exclude non-HTTP(S) targets."
    ],
    "linksPreserved": true,
    "javascriptRendered": false
   },
   "redirected": false,
   "description": null,
   "pageSignals": {
    "headings": {
     "h1": [
      "Example Domain"
     ],
     "h2Count": 0,
     "h3Count": 0
    },
    "feedCount": 0,
    "canonicalUrl": null,
    "structuredData": {
     "types": [],
     "blocks": 0,
     "truncated": false,
     "validBlocks": 0,
     "invalidBlocks": 0
    },
    "alternateLanguageCount": 0
   },
   "requestedUrl": "https://example.com/",
   "contentSha256": "5945db6fd8137aa377638814ca9bb1ac0a663fd90a97f11f86c3f5c09cfb40e3"
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "web.extract",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-com-web-extract-bc9bcb6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
