Availability
90-day uptime
Average
99.98%
No incidents reported in the last 14 days.
Get notified when components change status.
Read-only JSON for custom status widgets, automations, incident views, and internal tooling. The endpoint below always reflects this page’s live public routes.
GET /status/b3/api
Returns page metadata, overall status, component states, recent incidents, and 90-day uptime data in one response.
const response = await fetch("/status/b3/api");
const payload = await response.json();
console.log(payload.overallStatus);
console.log(payload.components.map((component) => component.name));
overallStatus for a top-level status badge or banner.components[] for service-by-service health and last check times.incidents[] for active issues and recent history.uptimeData when you need spark bars or 90-day SLA charts.Abridged for readability. The live payload includes the full component list, incident history, and uptime series.
{
"page": {
"name": "B3",
"slug": "b3",
"template": "minimal",
"api_path": "/status/b3/api",
"markdown_path": "/status/b3/api.md",
"llms_path": "/status/b3/llms.txt"
},
"widgetConfig": {
"enabled": [
"uptime_overview",
"latency_trend",
"latency_breakdown",
"incident_summary"
],
"uptime_chart_style": "bars"
},
"overallStatus": "operational",
"components": [
{
"id": "spc_test1",
"name": "b3.fun",
"status": "operational",
"last_checked_at": "2026-03-20 09:16:47"
},
{
"id": "spc_b3_2",
"name": "sepolia.explorer.b3.fun",
"status": "unknown",
"last_checked_at": null
}
],
"incidents": [],
"uptimeData": {
"spc_test1": {
"overall": 100,
"days": [
{
"date": "2026-03-19",
"uptime": 100
},
{
"date": "2026-03-20",
"uptime": 100
}
]
}
},
"widgetData": {
"latencyTrend": [
{
"date": "2026-03-18",
"label": "Mar 18",
"avg_ms": 1002
},
{
"date": "2026-03-19",
"label": "Mar 19",
"avg_ms": 1008
},
{
"date": "2026-03-20",
"label": "Mar 20",
"avg_ms": null
}
],
"latencySummary": {
"avg_ms": 1007,
"p50_ms": 742,
"p95_ms": 2983,
"p99_ms": 3000
},
"regionLatency": [
{
"region": "ap-southeast",
"avg_ms": 892,
"p95_ms": 2684,
"checks_total": 4952
},
{
"region": "us-east",
"avg_ms": 938,
"p95_ms": 2895,
"checks_total": 4952
},
{
"region": "eu-west",
"avg_ms": 1086,
"p95_ms": 3207,
"checks_total": 4952
}
],
"incidentSummary": {
"active_count": 0,
"resolved_30d": 0,
"mttr_minutes": null
}
}
}