Skip to content

List failed checks

GET
/results/failures
curl --request GET \
--url 'https://app.tunnelhq.com/api/v1/results/failures?period=15m' \
--header 'X-API-Key: <X-API-Key>' \
--header 'X-Project-Id: prj_12'

Returns the project’s results that were down, newest first, up to 500. Any role in the project can call it. Results older than 24 hours are thinned as described in List results.

Need an API key? See Getting an API key.

X-Project-Id
required
string

The project, as prj_12 or 12. A workspace key can only reach its own workspace’s projects.

Example
prj_12
period
string
default: 24h
Allowed values: 15m 1h 24h 7d

How far back to look. Any other value is treated as 1h, though the response echoes what you sent.

The failed results.

Media typeapplication/json
object
failures
required
Array<object>
object
id
required
string
server_id
required
string
server_name
required
string
status
required

degraded means the check had no verdict; unknown, that it ran during maintenance.

string
Allowed values: healthy down degraded unknown
latency_ms
required
integer | null
protocol
required

The monitor’s protocol, or unknown for a monitor that isn’t a VPN monitor.

string
tested_at
required

When the check ran, in UTC, as YYYY-MM-DD HH:MM:SS with no time zone marker.

string
error_message
required

What the check said when it failed, such as “Tunnel unreachable”.

string | null
period
required
string
total
required
integer
Example
{
"failures": [
{
"id": "hb_9912400",
"server_id": "srv_57",
"server_name": "sg-vless-01",
"status": "down",
"latency_ms": null,
"protocol": "vless",
"tested_at": "2026-09-25 13:12:40",
"error_message": "Tunnel unreachable"
}
],
"period": "24h",
"total": 1
}
X-RateLimit-Limit
integer

Requests the workspace’s plan allows per minute.

X-RateLimit-Remaining
integer

Requests left in the current minute.

X-RateLimit-Reset
integer

Unix time, in seconds, when the current minute ends.

The X-Project-Id header is missing or malformed.

Media typeapplication/json
object
error
required
boolean
code
required

The HTTP status, repeated.

integer
message
required

What went wrong.

string
details

More detail, on some errors.

retry_after

Seconds to wait, on the 429 for wrong keys.

integer
Examples
{
"error": true,
"code": 400,
"message": "X-Project-Id header is required (e.g. prj_1 or numeric id)"
}

The API key is missing, wrong, expired, switched off, or no longer valid.

Media typeapplication/json
object
error
required
boolean
code
required

The HTTP status, repeated.

integer
message
required

What went wrong.

string
details

More detail, on some errors.

retry_after

Seconds to wait, on the 429 for wrong keys.

integer
Examples
{
"error": true,
"code": 401,
"message": "API key is required. Provide X-API-Key header or Authorization: Bearer <key>"
}

The key can’t reach this project.

Media typeapplication/json
object
error
required
boolean
code
required

The HTTP status, repeated.

integer
message
required

What went wrong.

string
details

More detail, on some errors.

retry_after

Seconds to wait, on the 429 for wrong keys.

integer
Examples
{
"error": true,
"code": 403,
"message": "This API key is scoped to a different organization"
}

No active project has this ID.

Media typeapplication/json
object
error
required
boolean
code
required

The HTTP status, repeated.

integer
message
required

What went wrong.

string
details

More detail, on some errors.

retry_after

Seconds to wait, on the 429 for wrong keys.

integer
Example
{
"error": true,
"code": 404,
"message": "Project not found or inactive"
}

A usage limit was reached, or this IP address made too many requests with a wrong key.

Usage limits are per workspace and plan: per minute (Retry-After: 60), per day (Retry-After: 3600), and per month (no Retry-After). They use their own body shape. An IP address may send 10 wrong keys a minute; one more is allowed every 6 seconds. While that allowance is used up, every request from the address is refused, even one with a valid key.

Media typeapplication/json
One of:
object
error
required
string
Allowed values: Rate limit exceeded Daily limit exceeded Monthly limit exceeded
message
required
string
retry_after

Seconds to wait. Absent for the monthly limit.

integer
Examples
{
"error": "Rate limit exceeded",
"message": "Per-minute limit of 60 requests exceeded",
"retry_after": 60
}
Retry-After
integer

Seconds to wait. 60 for the per-minute limit, 3600 for the daily limit, 6 after wrong keys. Absent for the monthly limit.

Something failed on TunnelHQ’s side.

Media typeapplication/json
object
error
required
boolean
code
required

The HTTP status, repeated.

integer
message
required

What went wrong.

string
details

More detail, on some errors.

retry_after

Seconds to wait, on the 429 for wrong keys.

integer
Example
{
"error": true,
"code": 500,
"message": "Internal server error"
}