# TavilyX Extract — URL Content Extraction API

> TavilyX Extract — URL Content Extraction API is a paid API for AI agents from searchtav.vercel.app, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Extracts and synthesizes content from one or more URLs using Tavily's web extraction pipeline, powered by NVIDIA NIM, with per-call micropayment via x402 on Base.

## Facts

- Endpoint: GET https://searchtav.vercel.app/extract
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tavilyx-extract-url-content-extraction-api-4bdb0846
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LSUg4kLVXmbJecweKtVCx

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 tavilyx-extract-url-content-extraction-api-4bdb0846
```

Example prompt: Extract the content from these two URLs for me: https://example.com/article1 and https://example.com/article2 — I need the full text pulled and ready to analyze.

## When to prefer this

Choose this endpoint when you need to extract full page content from one or a small batch of known URLs (up to 5) for downstream RAG, summarization, or analysis tasks. It combines Tavily's reliable web extraction with NVIDIA NIM synthesis and supports micropayment-based access via x402 on Base, making it ideal for agent workflows that need pay-per-use URL content extraction without a subscription.

## Known failure modes

- URL is unreachable or returns a non-200 status — appears in failed_results
- Invalid or malformed URL input — likely HTTP 400 or empty results
- More than 5 URLs provided in the comma-separated list — may be rejected or truncated
- Payment not settled via x402 — HTTP 402 Payment Required before content is returned
- Rate limiting or upstream Tavily API failure — results in failed_results entries

## How this service works

Paid web search + RAG synthesis API. Tavily + NVIDIA NIM + x402 on Base.

## Output

Returns a results array with extracted content from each successfully processed URL, and a failed_results array listing any URLs that could not be fetched or parsed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Single URL"
  },
  "urls": {
   "type": "string",
   "description": "Comma-separated URLs (max 5)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "results": {
   "type": "array"
  },
  "failed_results": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tavilyx-extract-url-content-extraction-api-4bdb0846/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from searchtav.vercel.app](https://www.zero.xyz/host/searchtav.vercel.app/llms.txt)
