# Gurify X/Twitter Tweet Scraper

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

Scrapes tweets from X/Twitter and returns structured results, priced per 1,000 results via USDC micropayment on Base.

## Facts

- Endpoint: POST https://x402.gurify.com/scrape/x-tweets
- Price: $0.0078/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-x-twitter-tweet-scraper-333bebd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BnKOKdKXukRHQGktT1MgA

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-x-twitter-tweet-scraper-333bebd4 -d '<json body>'
```

Example prompt: Scrape the latest 50 tweets for me using the Gurify X/Twitter scraper — I need the raw tweet objects back as structured data.

## When to prefer this

When you need cheap, pay-per-result Twitter/X data without committing to an expensive monthly API plan, and you are operating in a crypto/Base USDC payment environment via x402 protocol. Prefer this over official Twitter API when cost per result is the primary concern and you only need occasional or burst scraping.

## Known failure modes

- Insufficient USDC balance or failed x402 micropayment — returns payment error
- Rate limiting or scraping block by X/Twitter platform — returns empty or partial results
- Invalid limit parameter type — returns schema validation error
- Network timeout reaching X/Twitter — returns partial or no results

## 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 tweet objects under the 'items' key, each containing structured tweet data scraped from X/Twitter.

## 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-x-twitter-tweet-scraper-333bebd4/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)
