# Tavily Web Content Extraction via auor.io

> Tavily Web Content Extraction via auor.io is a paid API for AI agents from api.auor.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Extracts full content from web pages using the Tavily extraction API, returning readable text from given URLs.

## Facts

- Endpoint: POST https://api.auor.io/tavily/v1/extract
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tavily-web-content-extraction-via-auor-io-44213e6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ergBf6JQogmf6vOzIZKeo

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 tavily-web-content-extraction-via-auor-io-44213e6d -d '<json body>'
```

Example prompt: Can you pull the full text content from this article for me? https://techcrunch.com/2024/05/01/some-article — I want to read what it actually says.

## When to prefer this

Use this endpoint when you need to extract clean readable text from a specific known URL, especially within an x402 pay-per-call agent workflow that avoids account management. Prefer this over general search when you already have the URL and just need its content.

## Known failure modes

- URL is inaccessible or returns a 4xx/5xx error — extraction fails
- Page is JavaScript-heavy and content cannot be statically extracted
- URL points to a PDF or binary file rather than an HTML page — unsupported format
- Rate limit or payment failure — 402 or 429 response
- Malformed or missing URL input — validation error
- Page blocks automated access with CAPTCHAs or bot detection

## How this service works

Use Tavily to extract content from web pages.

## Output

Returns the extracted readable text content from the specified web page URL, parsed and cleaned by the Tavily extraction engine.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "$ref": "https://api.auor.io/schemas/tavily/v1/extract/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tavily-web-content-extraction-via-auor-io-44213e6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
