Discover/World Monitor API
live

World Monitor APIworldmonitor.app

Access real-time conflict events, military posture, cyber threats, maritime GPS jamming, supply chain status, economic indicators, and more via the World Monitor API.

Endpoint health
verified 7h ago
bootstrap
military
intelligence
aviation
prediction_markets
13/19 passing latest checkself-healing
Endpoints
19
Updated
3d ago

What is the World Monitor API?

The World Monitor API exposes 19 endpoints covering live geopolitical, economic, and environmental data from worldmonitor.app. A single bootstrap call returns bulk dashboard data across a dozen categories at once, while focused endpoints like conflict_events, military, maritime, and cyber_threats let you pull specific intelligence feeds. Response fields span ACLED armed conflict records, theater posture levels, GPS jamming hex regions, chokepoint disruption scores, and Polymarket prediction market odds.

Try it
Data tier: 'fast' (earthquakes, outages, services, market/commodity quotes, macro signals, chokepoints), 'slow' (sectors, ETF flows, BIS policy/exchange rates, shipping, minerals, climate, wildfires, cyber threats), or 'all' (both combined)
api.parse.bot/scraper/5f4c6353-3b55-4f27-8a37-3d0429ad0915/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5f4c6353-3b55-4f27-8a37-3d0429ad0915/bootstrap?tier=slow' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace worldmonitor-app-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: World Monitor Geopolitical Intelligence SDK — bounded, re-runnable."""
from parse_apis.world_monitor_geopolitical_intelligence_api import (
    WorldMonitor, MarketType, ConflictSource, SupplyChainType, EconType, DataNotFound
)

client = WorldMonitor()

# List recent earthquakes globally from USGS — limit caps total items fetched.
for quake in client.earthquakes.list(limit=3):
    print(quake.id, quake.magnitude, quake.location)

# Get market quotes for Gulf region stocks using a typed enum.
for quote in client.marketquotes.list(type=MarketType.GULF, limit=5):
    print(quote.symbol, quote.price, quote.change)

# Drill-down: take ONE chokepoint and inspect its disruption level.
chokepoint = client.chokepoints.list(type=SupplyChainType.CHOKEPOINTS, limit=1).first()
if chokepoint:
    print(chokepoint.name, chokepoint.status, chokepoint.disruptionScore)

# List conflict events from UCDP source.
for event in client.conflictevents.list(source=ConflictSource.UCDP, limit=3):
    print(event.title, event.location, event.severity)

# Typed error handling around economic data retrieval.
try:
    econ = client.economicdatas.get(type=EconType.ENERGY)
    print(econ.prices)
except DataNotFound as exc:
    print(f"economic data unavailable: {exc}")

print("exercised: earthquakes.list / marketquotes.list / chokepoints.list / conflictevents.list / economicdatas.get")
All endpoints · 19 totalmissing one? ·

Get comprehensive dashboard data in bulk. Returns multiple categories at once: earthquakes, outages, service statuses, market quotes, commodity quotes, macro signals, chokepoints, sectors, ETF flows, BIS policy rates, exchange rates, shipping rates, minerals, climate anomalies, wildfires, cyber threats.

Input
ParamTypeDescription
tierstringData tier: 'fast' (earthquakes, outages, services, market/commodity quotes, macro signals, chokepoints), 'slow' (sectors, ETF flows, BIS policy/exchange rates, shipping, minerals, climate, wildfires, cyber threats), or 'all' (both combined)
Response
{
  "type": "object",
  "fields": {
    "data": "object containing all widget data keyed by category name"
  },
  "sample": {
    "data": {
      "data": {
        "outages": [],
        "earthquakes": [],
        "serviceStatuses": []
      }
    },
    "status": "success"
  }
}

About the World Monitor API

Conflict, Military, and Intelligence

The conflict_events endpoint accepts a source parameter to switch between datasets: acled for armed conflict, ucdp for conflict data, oref for Israel alert feeds, unrest for civil unrest filtered by min_severity, and humanitarian for per-country summaries keyed by country_code. The intelligence endpoint returns CII regional risk scores with combinedScore, trend, and component breakdowns, as well as DEFCON-style status objects. Pass type=country_brief with a country name to retrieve a targeted intelligence summary. The military endpoint covers theater_posture (active flights and tracked vessels per theater), US Navy fleet positions, and military bases.

Infrastructure, Climate, and Supply Chain

infrastructure splits into outages (internet disruption events with country, severity, and cause) and services (operational status for AWS, Azure, GCP, GitHub, and similar platforms). climate_weather returns either climate anomalies per zone — including tempDelta, precipDelta, and severity — or satellite wildfire detections. supply_chain covers maritime chokepoints (Suez, Hormuz, Malacca, Panama) with disruptionScore, congestionLevel, affectedRoutes, and warRiskTier, plus critical minerals market data.

Markets, Trade, and Economic Data

markets returns Gulf/Middle East equity quotes, cryptocurrency prices, or stablecoin data, all with price, change, and sparkline arrays. economic offers commodity/energy prices or BIS credit-to-GDP ratios by country with creditGdpRatio and date. trade returns recent restrictions and barriers — country, type, description, and date — filterable by type and limit. The maritime endpoint delivers GPS jamming and spoofing detections broken down by H3 hex grid regions worldwide.

News, Signals, and Events

news_feed aggregates categorized digests from CNN, BBC, Reuters, AP, Al Jazeera, and others, grouped into categories like middleeast, finance, ai, and energy. telegram_feed returns OSINT channel messages with channel, text, topic, and tags. prediction_markets pulls Polymarket data filterable by tag (politics, crypto, sports). research_tech lists upcoming conferences, earnings, product launches, and IPOs within a configurable days look-ahead window. displacement provides UNHCR-style global totals for refugees, asylum seekers, IDPs, and stateless persons, plus country-level arrays and top displacement flows.

Reliability & maintenanceVerified

The World Monitor API is a managed, monitored endpoint for worldmonitor.app — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when worldmonitor.app changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official worldmonitor.app API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
13/19 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Trigger supply chain alerts when a chokepoint's disruptionScore or warRiskTier crosses a threshold via the supply_chain endpoint.
  • Build a live conflict dashboard by polling conflict_events with source=acled and overlaying results on a geographic map.
  • Monitor cloud infrastructure health by pulling infrastructure with type=services to track AWS, Azure, and GCP operational status.
  • Correlate Gulf equity market movements from markets with geopolitical risk scores from intelligence for trading signal research.
  • Track global displacement trends using displacement summary totals and topFlows to support humanitarian logistics planning.
  • Aggregate OSINT early-warning signals from telegram_feed alongside news_feed categories for a unified analyst briefing feed.
  • Detect aviation disruption risk by combining aviation delay alerts with climate_weather anomaly severity for affected regions.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does worldmonitor.app offer an official developer API?+
worldmonitor.app does not publish a documented public developer API. This Parse API provides structured programmatic access to the data surfaced on that platform.
What does the `conflict_events` endpoint distinguish between its source options?+
Setting source=acled returns ACLED armed conflict records; source=ucdp returns UCDP conflict data; source=unrest returns civil unrest events filterable by min_severity; source=oref returns Israel OREF alert feeds selectable by oref_endpoint; and source=humanitarian returns per-country humanitarian summaries, which requires supplying a country_code such as SY.
Does the `maritime` endpoint include vessel AIS tracking or port congestion data beyond GPS jamming?+
Currently the maritime endpoint returns GPS jamming and spoofing detections by H3 hex region. Vessel AIS positions and per-port congestion metrics are not part of the current response shape. You can fork this API on Parse and revise it to add those endpoints if your use case requires vessel-level tracking.
How fresh is the data across endpoints, and is there historical data available?+
The API is designed for real-time and near-real-time monitoring; endpoints like earthquakes, telegram_feed, and cyber_threats reflect live or recently ingested data. Historical time-series archives beyond what each upstream source exposes in its current feed are not available through these endpoints. You can fork this API on Parse and revise it to store responses and build your own historical layer.
Does the `intelligence` endpoint include threat assessments for all countries?+
The intelligence endpoint returns CII risk scores organized by region (not individual countries) when using type=risk_scores, and a country-level brief when using type=country_brief with a country name. Exhaustive coverage for every UN-recognized country is not guaranteed — availability depends on the upstream data sources feeding each region. You can fork this API on Parse and revise it to augment with additional country intelligence sources.
Page content last updated . Spec covers 19 endpoints from worldmonitor.app.
Related APIs in Government PublicSee all →
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
worlddata.info API
Explore global statistics and compare countries across population, economy, demographics, quality of life, education, and health metrics. Search worldwide data on everything from life expectancy and languages to religions and regional breakdowns to gain comprehensive insights into how nations rank against each other.
moondev.com API
Access live crypto market data from MoonDev's public endpoints: aggregated Hyperliquid positions near liquidation, fees leaderboard, PnL share stats by address, Polymarket sweep trades, and soon-to-expire Polymarket markets — plus a single aggregate endpoint that pulls all major datastreams at once.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
global-warming.org API
Access real-time climate and environmental data including temperature, CO2, methane, nitrous oxide levels, arctic sea ice coverage, and ocean warming metrics. Browse climate news updates and explore detailed information on deforestation trends through an integrated environmental monitoring platform.
sentimentrader.com API
Track real-time market sentiment and investor behavior by accessing Smart Money/Dumb Money confidence levels, trending stocks, and capitulation signals to inform your trading decisions. Monitor macroeconomic conditions alongside sentiment indicators to get a comprehensive view of current market psychology and potential turning points.
argenstats.com API
Access Argentina's key economic indicators including the EMAE activity index, inflation (IPC), dollar exchange rates (BLUE, CCL, MEP, OFICIAL, and more), country risk, employment, and poverty levels. Retrieve current values, historical series, and forecasting event listings from ArgenStats.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.