Skip to main content
GET
/
metrics
curl -X GET https://scrape.st/metrics
{
  "window_hours": 24,
  "count": {
    "source": 1250,
    "internal": 3400
  },
  "source_latency_ms": {
    "p50": 145,
    "p95": 280,
    "p99": 450
  },
  "internal_latency_ms": {
    "p50": 12,
    "p95": 25,
    "p99": 45
  }
}
This endpoint returns system performance metrics for the last 24 hours, including latency statistics for both source and internal operations.
window_hours
number
The time window for the metrics (always 24 hours).
count
object
Operation counts for the time window.
source_latency_ms
object
Latency percentiles for source operations in milliseconds.
internal_latency_ms
object
Latency percentiles for internal operations in milliseconds.
curl -X GET https://scrape.st/metrics
{
  "window_hours": 24,
  "count": {
    "source": 1250,
    "internal": 3400
  },
  "source_latency_ms": {
    "p50": 145,
    "p95": 280,
    "p99": 450
  },
  "internal_latency_ms": {
    "p50": 12,
    "p95": 25,
    "p99": 45
  }
}