# Gurify YouTube Scraper

> Gurify YouTube Scraper is a paid API for AI agents from x402.gurify.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Scrapes YouTube search results or video data and returns a list of items, priced per 1,000 results settled in USDC on Base via x402.

## Facts

- Endpoint: POST https://x402.gurify.com/scrape/youtube
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-youtube-scraper-adb517e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sDN1bsYyBK9KJu_TlgQDQ

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 gurify-youtube-scraper-adb517e4 -d '<json body>'
```

Example prompt: Scrape YouTube for the top 50 results about 'AI agents tutorial' and give me back the video titles, URLs, and metadata.

## When to prefer this

Choose this endpoint when you need YouTube search result data at low cost per result without managing a YouTube Data API quota, especially for bulk or programmatic data collection pipelines that settle payments automatically via x402 on Base.

## Known failure modes

- Insufficient USDC balance or x402 payment failure — payment rejected, no results returned
- Invalid or missing 'limit' parameter — request may fail or return default results
- YouTube anti-scraping measures temporarily blocking results — empty or partial items array
- Rate limiting on the scraper backend — delayed or failed response
- Query returning zero results — items array is empty

## How this service works

Cheap pay-per-RESULT web scrapers — X/Twitter, YouTube, Google Maps, Instagram, Amazon (products/detail/best-sellers), Twitch — priced per 1,000 results, settled in USDC on Base via x402.

## Output

Returns a JSON object with an 'items' array, each element being a YouTube result object containing video metadata such as title, URL, view count, channel, and other available fields scraped from YouTube.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gurify-youtube-scraper-adb517e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.gurify.com](https://www.zero.xyz/host/x402.gurify.com/llms.txt)
