# Gurify Twitch Discovery Scraper

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

Scrapes and returns Twitch discovery data (channels, streams, or categories) as a list of structured items, priced per result in USDC on Base.

## Facts

- Endpoint: POST https://x402.gurify.com/scrape/twitch-discovery
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-twitch-discovery-scraper-8f4bd989
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WFZLFjVP3GoNo0KGdfQb0

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-twitch-discovery-scraper-8f4bd989 -d '<json body>'
```

Example prompt: Scrape the Twitch discovery feed for me and return the top 50 channels or streams you find — I want to see what's trending right now.

## When to prefer this

Use this endpoint when you need cheap, pay-per-result Twitch channel or stream discovery data without managing your own scraping infrastructure. Prefer it over the official Twitch API when you want to avoid OAuth setup, or when you need discovery-style data (trending, featured) that isn't cleanly exposed by official endpoints. Best for lightweight agent workflows that need periodic Twitch data at low cost settled in USDC on Base.

## Known failure modes

- Twitch blocks scraper — empty items array or upstream error
- limit parameter missing or out of range — validation error
- Payment insufficient — x402 payment required error
- Twitch layout change breaks scraper — malformed or incomplete items
- Rate limit exceeded — 429 or service throttling response

## 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

An object containing an 'items' array of Twitch discovery records (channels, streams, or categories) as structured objects, up to the requested limit.

## 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-twitch-discovery-scraper-8f4bd989/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)
