Skip to main content
Scrapest is a real-time social data infrastructure that captures and delivers posts from Twitter/X, Telegram, and Discord — with sub-second latency, zero rate limits, and no official API dependency.

Supported Sources

Twitter / X

Track users, search tweets, token mentions, backfill history

Telegram

Monitor groups & channels, token mentions, backfill history

Discord

Track channels & servers, token mentions, backfill history

How It Works

  1. Track — Add sources (Twitter users, Telegram groups, Discord channels) via REST API or Dashboard
  2. Receive — Get data instantly via Webhooks, WebSocket, or SSE
  3. Query — Search tweets, fetch user profiles, or pull historical data on demand via REST API

Delivery Methods

MethodLatencyAuthUse Case
Webhooks~200msx-api-keyEvent-driven push to your endpoint
WebSocket~50msx-api-keyHigh-frequency bidirectional streaming
SSE~50msToken / NoneSimple real-time with auto-reconnect
REST APIOn-demandx-api-keyQuery data when you need it

Monitoring & Metrics

Scrapest exposes real-time system health and latency metrics via public endpoints — no authentication required.
EndpointDescription
GET /healthSystem status (healthy, degraded, critical)
GET /metricsAggregated latency P50/P95/P99 (24h window)
GET /metrics/:sourcePer-source latency (twitter, discord, telegram)
All metrics use a 24-hour rolling window. See the full Health & Metrics API reference for response schemas.

Quick Start

  1. Login at admin.scrape.st via Telegram
  2. Create API Key in dashboard
  3. Set Webhook endpoint
  4. Track a source — X, Telegram, or Discord
# Track an X user
curl -X POST https://scrape.st/track/x \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sid": "elonmusk"}'

See Benchmarks to see how Scrapest compares to the official X API.