# DataPipe API — Web Scrape Endpoint

> DataPipe API — Web Scrape Endpoint is a paid API for AI agents from v2kidnapi.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches and extracts content from a given URL, returning the scraped web page data

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/scrape
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datapipe-api-web-scrape-endpoint-0954e6de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iUAsXhyGcpMLKDKDTekU_

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 datapipe-api-web-scrape-endpoint-0954e6de -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/article and return everything on that page?

## When to prefer this

Use this endpoint when you need to fetch raw content from a specific public web URL and the URL is known in advance; it costs $0.03 USDC per call paid via x402 on Base chain, making it suitable for lightweight, pay-per-use web content retrieval without managing a scraping infrastructure

## Known failure modes

- Invalid or malformed URL returns an error or success:false
- Target website blocks scraping (403/429) resulting in failure or empty data
- URL is unreachable or times out
- Page requires JavaScript rendering that the scraper cannot handle
- Private or paywalled content may return incomplete data

## How this service works

Multi-source data API for AI agents. Search, news, Reddit, translation, web scraping. Pay with x402 on Base chain.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the scraped content from the provided URL

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datapipe-api-web-scrape-endpoint-0954e6de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v2kidnapi.vercel.app](https://www.zero.xyz/host/v2kidnapi.vercel.app/llms.txt)
