Skip to content

Get DORA report within a time range.

GET
/v1/review_requests/{org_uuid}/reports/dora/range

Get DORA report within a range.

granularity and from-to has the following relationship:

  • days (available only if time range is below 32 days in total)
  • weeks (available only if time range is max 1 year)
  • months (available only if time range is max 2 years)
  • quarters (available only if time range is max 4 years)
  • years (always available)

Authorizations

apiKey

API key as username in Basic Authorization with
empty password.

TypeAPI Key (header: Authorization)
or
jwtToken
TypeHTTP (bearer)

Parameters

Path Parameters

org_uuid*

UUID of the organization

Typestring
Required
format"uuid"

Query Parameters

timezone

The time zone defined by IANA.

Typestring
Example"Europe/Berlin"
from

Only entities that has a timestamp from this date including
the date.

Typestring
Example"2024-04-11"
format"date"
to

Only entities that has a date up to this date including
the date.

Typestring
Example"2024-04-11"
format"date"
granularity

The time granularity to use.

Typestring
Enum
"days""weeks""months""quarters""years"
Example"days"
default"days"

Responses

OK

application/json
JSON
{
"review_requests": [
{
"date": "2025-06-25T00:00:00.000Z",
"lead_time_for_change_seconds_max": 23232,
"lead_time_for_change_seconds_min": 2,
"lead_time_for_change_seconds_avg": 223.23,
"time_to_restore_seconds_max": 2323,
"time_to_restore_seconds_min": 2,
"time_to_restore_seconds_avg": 2,
"status_success_total": 42,
"status_failed_total": 32,
"status_unstable_total": 0
}
]
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI