Skip to main content
GET
/
api
/
radiation
/
v1
/
list-radiation-observations
ListRadiationObservations
curl --request GET \
  --url https://api.example.com/api/radiation/v1/list-radiation-observations
{
  "observations": [
    {
      "id": "<string>",
      "source": "RADIATION_SOURCE_UNSPECIFIED",
      "locationName": "<string>",
      "country": "<string>",
      "location": {
        "latitude": 0,
        "longitude": 0
      },
      "value": 123,
      "unit": "<string>",
      "observedAt": 123,
      "freshness": "RADIATION_FRESHNESS_UNSPECIFIED",
      "baselineValue": 123,
      "delta": 123,
      "zScore": 123,
      "severity": "RADIATION_SEVERITY_UNSPECIFIED",
      "contributingSources": [
        "RADIATION_SOURCE_UNSPECIFIED"
      ],
      "confidence": "RADIATION_CONFIDENCE_UNSPECIFIED",
      "corroborated": true,
      "conflictingSources": true,
      "convertedFromCpm": true,
      "sourceCount": 123
    }
  ],
  "fetchedAt": 123,
  "epaCount": 123,
  "safecastCount": 123,
  "anomalyCount": 123,
  "elevatedCount": 123,
  "spikeCount": 123,
  "corroboratedCount": 123,
  "lowConfidenceCount": 123,
  "conflictingCount": 123,
  "convertedFromCpmCount": 123
}

Documentation Index

Fetch the complete documentation index at: https://worldmonitor.app/docs/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

max_items
integer<int32>

Maximum items to return (1-25). Zero uses the service default.

Response

Successful response

ListRadiationObservationsResponse contains normalized readings plus coverage metadata.

observations
object[]
fetchedAt
integer<int64>

Time the service synthesized the response, as Unix epoch milliseconds.. Warning: Values > 2^53 may lose precision in JavaScript

epaCount
integer<int32>

Number of EPA RadNet observations included.

safecastCount
integer<int32>

Number of Safecast observations included.

anomalyCount
integer<int32>

Total observations classified above normal.

elevatedCount
integer<int32>

Observations classified as elevated.

spikeCount
integer<int32>

Observations classified as spike-level anomalies.

corroboratedCount
integer<int32>

Observations corroborated by more than one source.

lowConfidenceCount
integer<int32>

Observations that remain low-confidence after synthesis.

conflictingCount
integer<int32>

Observations where contributing sources materially disagree.

convertedFromCpmCount
integer<int32>

Observations whose normalized value was derived from CPM.