Get remediation agility for an organization
GET
/v1/risks/remediation
const url = 'https://api.adversarial.com/api/v1/risks/remediation?start_date=2026-01-01T00%3A00%3A00Z&end_date=2026-12-31T23%3A59%3A59Z';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.adversarial.com/api/v1/risks/remediation?start_date=2026-01-01T00%3A00%3A00Z&end_date=2026-12-31T23%3A59%3A59Z'Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”start_date
string | null format: date-time
Inclusive lower bound on the window. RFC 3339 timestamp or bare
YYYY-MM-DD (anchored at start-of-day UTC).
Example
2026-01-01T00:00:00Zend_date
string | null format: date-time
Inclusive upper bound on the window. RFC 3339 timestamp or bare
YYYY-MM-DD (anchored at end-of-day UTC).
Example
2026-12-31T23:59:59Zurgency
Array<string> | null
parent_id
Array | null
Filter on what a risk is linked under, using the same vocabulary as
the register: null (top-level), any (linked children only), or a
parent id as RSK-<n> or a bare number. Repeat to union. Defaults to
null — parity with the register, so the chart plots bundle parents
only.
Responses
Section titled “Responses”Get remediation agility for an organization
Media typeapplication/json
The compact set of risk fields used to compute remediation agility.
Array<object>
object
Example
[ { "urgency": "Info" }]