Status

Список всех доступных методов для взаимодействия с API.

GET

Get service status

/status

Service status

Availability of every published service, grouped for a status page. The whole board is one call, cached 30 seconds.

range1h, 6h, 24h (default), 7d, 30d. Each monitor returns history: evenly spaced points, 10 minutes apart by default.

status is up, degraded, down or pending (not measured). A null status or uptime_* means no data — render a gap, not a zero.

Способ запроса

GEThttps://api.stableproxy.com/v2/status

Примеры кода

1const baseUrl = "https://api.stableproxy.com/v2";
2const response = await fetch(baseUrl + "/status", {
3 method: "GET",
4 headers: {
5 "Content-Type": "application/json"
6 }
7});
8const data = await response.json();

Примеры ответов

Success response200application/json
{
  "data": {
    "status": "up",
    "updated_at": "2026-08-06T13:47:39+03:00",
    "range": "24h",
    "ranges": [
      "1h",
      "6h",
      "24h",
      "7d",
      "30d"
    ],
    "groups": [
      {
        "name": "Proxies",
        "status": "up",
        "monitors": [
          {
            "slug": "all-shared",
            "name": "Shared",
            "group": "Proxies",
            "status": "up",
            "status_since": "2026-08-04T09:12:00+03:00",
            "uptime_24h": 99.87,
            "uptime_7d": 99.62,
            "uptime_30d": 99.41,
            "history": [
              {
                "t": "2026-08-06T13:40:00+03:00",
                "status": "up",
                "latency_ms": 143
              }
            ]
          }
        ]
      }
    ]
  },
  "good": true
}