Skip to main content
GET
/
metrics
/
:source
curl -X GET https://scrape.st/metrics/x
{
  "source": "x",
  "window_hours": 24,
  "count": {
    "source": 12500,
    "internal": 12480
  },
  "source_latency_ms": {
    "p50": 420,
    "p95": 1100,
    "p99": 2300
  },
  "internal_latency_ms": {
    "p50": 115,
    "p95": 340,
    "p99": 780
  }
}
Get latency metrics for a specific source.

Parameters

source
string
required
Source type. Valid values: x, discord, telegram

Response

source
string
The source queried
window_hours
number
Time window in hours (24)
count
object
Number of data points
source_latency_ms
object
Latency percentiles (P50, P95, P99)
internal_latency_ms
object
Internal processing latency percentiles
curl -X GET https://scrape.st/metrics/x
{
  "source": "x",
  "window_hours": 24,
  "count": {
    "source": 12500,
    "internal": 12480
  },
  "source_latency_ms": {
    "p50": 420,
    "p95": 1100,
    "p99": 2300
  },
  "internal_latency_ms": {
    "p50": 115,
    "p95": 340,
    "p99": 780
  }
}