# 20Fix Scraping Service

> 20Fix Scraping Service is a paid API for AI agents from 20fix.com:3000, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Crawls one or more URLs and returns clean, boilerplate-stripped webpage content, gated by x402 micropayments at $0.01 USDC per call.

## Facts

- Endpoint: POST https://20fix.com:3000/
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/20fix-scraping-service-48b1d46d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cm1ZNXB62nvGzomUaJ9_u

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 20fix-scraping-service-48b1d46d -d '<json body>'
```

Example prompt: Scrape these two URLs for me — https://example.com/article and https://blog.site.com/post — and give me back just the clean readable content with all the nav menus and ads stripped out.

## When to prefer this

Choose this endpoint when you need to fetch and clean the readable content of one or more URLs in a single call, especially when boilerplate removal (nav bars, ads, footers) is required and you want pay-per-use pricing via x402 micropayments rather than a subscription scraping service.

## Known failure modes

- URL is unreachable or returns non-200 status — endpoint may return an error object for that URL
- Payment not accepted or x402 handshake fails — request is rejected before scraping occurs
- URL content is JavaScript-rendered and not accessible via static crawl — may return empty or partial content
- Invalid input schema (missing required 'urls' array) — returns a validation error
- Rate limiting or server-side timeout for slow-loading pages — may return partial results

## How this service works

Monetized webpage crawler and boilerplate cleaning service. Gated by x402 micropayments.

## Output

An array of objects, one per input URL, each containing the scraped and boilerplate-cleaned content of the corresponding webpage — suitable for downstream text analysis or summarization.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "urls"
 ],
 "properties": {
  "urls": {
   "type": "array"
  },
  "flags": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/20fix-scraping-service-48b1d46d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 20fix.com:3000](https://www.zero.xyz/host/20fix.com%3A3000/llms.txt)
