Skip to main content
GET
/
admin
/
api
/
v1
/
dashboard
Get Dashboard
curl --request GET \
  --url https://api.example.com/admin/api/v1/dashboard
{
  "generatedAt": "2023-11-07T05:31:56Z",
  "bucketSeconds": 123,
  "requests": {
    "total": 123,
    "deltaPct": 123,
    "series": []
  },
  "latency": {
    "p50Ms": 123,
    "p95Ms": 123,
    "p95DeltaPct": 123,
    "series": []
  },
  "errorRate": {
    "valuePct": 123,
    "deltaPp": 123,
    "series": []
  },
  "cost": {
    "totalUsd": 123,
    "deltaPct": 123,
    "series": []
  },
  "topErrors": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

range
enum<string>
default:24h

Time-range filter values accepted by the dashboard endpoint.

Available options:
1h,
24h,
7d,
30d

Response

Successful Response

Top-level dashboard payload returned by GET /admin/api/v1/dashboard.

range
enum<string>
required

Time-range filter values accepted by the dashboard endpoint.

Available options:
1h,
24h,
7d,
30d
generatedAt
string<date-time>
required
bucketSeconds
integer
required
requests
RequestsBlock · object
required

Headline + series for the Requests widget.

latency
LatencyBlock · object
required

Headline + series for the Latency p50 / p95 widget.

errorRate
ErrorRateBlock · object
required

Headline + series for the Error rate widget.

value_pct is a decimal fraction (0.0042 means 0.42 %). delta_pp is a percentage-point delta as a decimal fraction (-0.001 means the error rate dropped by 0.1 pp; NOT a relative %).

cost
CostBlock · object
required

Headline + series for the Total cost widget.

topErrors
TopErrorRow · object[]
Last modified on May 22, 2026