curl --request GET \
--url https://api.example.com/v1/healthimport requests
url = "https://api.example.com/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/health', 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.example.com/v1/health",
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.example.com/v1/health"
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.example.com/v1/health")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/health")
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{
"status": "ok",
"capabilities": {}
}Service and per-upstream-source availability
curl --request GET \
--url https://api.example.com/v1/healthimport requests
url = "https://api.example.com/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/health', 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.example.com/v1/health",
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.example.com/v1/health"
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.example.com/v1/health")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/health")
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{
"status": "ok",
"capabilities": {}
}Response
Health report
Service health, reported per scoring CAPABILITY — the same names that appear as components in scoring responses, in degraded_sources, and in the tier matrix. "degraded" means scoring continues on reduced evidence for that capability (affected responses mark it in degraded_sources) — never an outage by itself. A top-level status of "degraded" with all capabilities "ok" indicates a platform issue under investigation; if the system of record is unreachable no scores are issued at all, since a score that cannot be audited is never returned.
ok, degraded Availability of each live scoring capability. "identity_resolution", "caller_id_integrity", "ndc_range_risk" and "premium_tariff" draw on FIL's numbering-plan intelligence (ITU allocations, operator attribution, range-level risk scores derived from consortium reporting). "reputation_ledger" and "ip_reputation" draw on the consortium's reported-identifier ledger. Derived capabilities (corroboration) degrade with their inputs and are not listed separately. Capabilities admitted per commercial tier are defined in the entitlements matrix; this endpoint lists every live capability regardless of tier.
Show child attributes
Show child attributes