Skip to main content
GET
/
api
/
infrastructure
/
v1
/
get-temporal-baseline
GetTemporalBaseline
curl --request GET \
  --url https://api.example.com/api/infrastructure/v1/get-temporal-baseline
{
  "anomaly": {
    "zScore": 123,
    "severity": "<string>",
    "multiplier": 123
  },
  "baseline": {
    "mean": 123,
    "stdDev": 123,
    "sampleCount": 123
  },
  "learning": true,
  "sampleCount": 123,
  "samplesNeeded": 123,
  "error": "<string>"
}

Query Parameters

type
string

Activity type: "military_flights", "vessels", "protests", "news", "ais_gaps", "satellite_fires".

region
string

Geographic region key, defaults to "global".

count
number<double>

Current observed count to compare against baseline.

Response

Successful response

GetTemporalBaselineResponse returns anomaly info or learning status.

anomaly
object

BaselineAnomaly describes a detected deviation from historical baseline.

baseline
object

BaselineStats contains the running statistics for a baseline key.

learning
boolean

True if insufficient samples have been collected.

sampleCount
integer<int32>

Current number of samples stored.

samplesNeeded
integer<int32>

Minimum samples required before anomaly detection activates.

error
string

Error message if request was invalid.