# Gurify Twitch Games Scraper

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

Scrapes and returns a list of top/trending games from Twitch, priced per result via USDC micropayment on Base.

## Facts

- Endpoint: POST https://x402.gurify.com/twitch/games
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-twitch-games-scraper-94206f25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KnTfPxRopXpHofLQoEsXA

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-games-scraper-94206f25 -d '<json body>'
```

Example prompt: Can you pull the top 50 games currently trending on Twitch and show me the list?

## When to prefer this

Use this endpoint when you need a cheap, pay-per-result scrape of Twitch's current top games list without managing Twitch API credentials or OAuth — ideal for agents doing trend analysis, game popularity monitoring, or competitive research on live streaming categories.

## Known failure modes

- Twitch source unavailable or rate-limited — empty items array or error response
- Invalid limit value (non-integer or negative) — request rejected
- Payment not settled in USDC on Base — 402 response blocking access
- Limit too large — may return partial results or timeout

## 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 array of Twitch game objects (items[]), each containing game metadata such as name, viewer counts, and category details — number of items controlled by the limit parameter.

## 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-games-scraper-94206f25/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)
