curl --request GET \
--url https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifestimport requests
url = "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"cache": {
"historyPrefix": "example",
"intervalMethodology": "example",
"intervalPrefix": "example",
"rankingKey": "example",
"scorePrefix": "example"
},
"constructVersions": {
"education": "example",
"energy": "example",
"financialSystemExposure": "example"
},
"dataVersion": "example",
"deployedCommitSha": "example",
"flags": [
{
"enabled": true,
"name": "WorldMonitor Analyst"
}
]
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>"
}GetResilienceRuntimeManifest
GetResilienceRuntimeManifest returns the public resilience-scoring runtime manifest: manifest version, generation timestamp, active formula tag, cache state, construct versions, and interval availability.
curl --request GET \
--url https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifestimport requests
url = "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/resilience/v1/get-runtime-manifest")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"cache": {
"historyPrefix": "example",
"intervalMethodology": "example",
"intervalPrefix": "example",
"rankingKey": "example",
"scorePrefix": "example"
},
"constructVersions": {
"education": "example",
"energy": "example",
"financialSystemExposure": "example"
},
"dataVersion": "example",
"deployedCommitSha": "example",
"flags": [
{
"enabled": true,
"name": "WorldMonitor Analyst"
}
]
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>"
}Query Parameters
Optional JMESPath expression applied server-side to project or reduce the JSON response before it is returned (mirrors the MCP jmespath argument). Invalid expressions, expressions larger than 1024 UTF-8 bytes, or projections that exceed the 256 KB output cap return HTTP 400 with a {_jmespath_error, original_keys} envelope. Grammar and worked examples: https://www.worldmonitor.app/docs/mcp-jmespath.
Response
Successful response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
