v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
Health-Check

Reddit Crypto Service Health

Returns public health and freshness metadata for the Reddit crypto platform.

Use it to check service availability, ingestion freshness and worker liveness. Client integrations usually start with /trending, /token/{symbol} or /search.

get/reddit/crypto/v1/health

Response

Successful Response

statusstring required
servicestring nullable
versionstring nullable
total_mentionsinteger

Mentions observed in the most recent scrape cycle; returns 0 when scrape telemetry is unavailable.

tokens_trackedinteger

Distinct symbols observed in the most recent scrape cycle; returns 0 when scrape telemetry is unavailable.

errorstring nullable

Example response

{
  "status": "healthy",
  "service": "reddit-crypto",
  "version": "1.49.0",
  "total_mentions": 18352,
  "tokens_tracked": 142,
  "scheduler": {
    "running": true,
    "last_scrape": "2026-03-12T07:55:00Z",
    "scrape_count": 248,
    "error_count": 3,
    "success_rate": 0.988,
    "timed_out_scrape_threads": 0
  }
}