Discover/LightningMaps API
live

LightningMaps APIlightningmaps.org

Access real-time lightning strike coordinates, timestamps, deviation, and Blitzortung detector station data across Europe, Oceania, and America.

Endpoint health
verified 2d ago
get_strikes_xhr
get_stations
2/2 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the LightningMaps API?

The LightningMaps.org API exposes 3 endpoints for real-time lightning strike data sourced from the Blitzortung.org sensor network. The get_strikes endpoint streams live strike events with latitude, longitude, Unix timestamps, and deviation values, and supports bounding-box filtering by north, south, east, and west coordinates. A companion endpoint returns detector station metadata for three global regions, and a polling endpoint provides the same strike data with per-detection station participation records.

Try it
Eastern longitude bound for filtering
Western longitude bound for filtering
Northern latitude bound for filtering
Southern latitude bound for filtering
Duration in seconds to collect strikes (1-60)
Source bitmask for lightning networks (4=Blitzortung default, 7=all)
api.parse.bot/scraper/5531a089-8e7e-4e66-bee0-269b40850b30/<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/5531a089-8e7e-4e66-bee0-269b40850b30/get_strikes' \
  -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 lightningmaps-org-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: LightningMaps SDK — real-time lightning strikes and detector stations."""
from parse_apis.lightningmaps_real_time_lightning_strike_api import LightningMaps, Region, UpstreamError

client = LightningMaps()

# List recent lightning strikes with station participation data
for strike in client.strikes.list(include_stations=True, limit=5):
    print(strike.latitude, strike.longitude, strike.deviation_m, strike.delay_ms)

# List detector stations in Europe using the Region enum
for station in client.stations.list(region=Region.EUROPE, limit=5):
    print(station.id, station.city, station.country, station.latitude, station.longitude)

# Typed error handling around a station lookup
try:
    for station in client.stations.list(region=Region.OCEANIA, limit=3):
        print(station.id, station.city, station.altitude)
except UpstreamError as exc:
    print(f"upstream error: {exc}")

print("exercised: strikes.list / stations.list (europe) / stations.list (oceania) with error handling")
All endpoints · 3 totalmissing one? ·

Get real-time lightning strikes via WebSocket connection. Connects to the live data feed and collects strikes for a configurable duration (1-60 seconds). Supports geographic bounding box filtering. Returns strike locations with latitude, longitude, timestamps, deviation, and metadata.

Input
ParamTypeDescription
eastnumberEastern longitude bound for filtering
westnumberWestern longitude bound for filtering
northnumberNorthern latitude bound for filtering
southnumberSouthern latitude bound for filtering
durationintegerDuration in seconds to collect strikes (1-60)
src_maskintegerSource bitmask for lightning networks (4=Blitzortung default, 7=all)
Response
{
  "type": "object",
  "fields": {
    "count": "integer - total strikes collected",
    "bounds": "object with north/south/east/west",
    "strikes": "array of strike objects",
    "copyright": "string",
    "source_mask": "integer - active source bitmask",
    "duration_seconds": "integer - collection duration"
  },
  "sample": {
    "count": 73,
    "bounds": {
      "east": 180,
      "west": -180,
      "north": 90,
      "south": -90
    },
    "strikes": [
      {
        "id": 8167918,
        "server": 1,
        "source": 2,
        "altitude": null,
        "delay_ms": 1823,
        "latitude": 46.941415,
        "longitude": -27.376728,
        "deviation_m": 1480,
        "timestamp_ms": 1772102690730
      }
    ],
    "copyright": "Lightning data by Blitzortung.org contributors via LightningMaps.org",
    "source_mask": 4,
    "duration_seconds": 10
  }
}

About the LightningMaps API

Strike Data Endpoints

The get_strikes endpoint collects live lightning events over a configurable window of 1 to 60 seconds (the duration parameter). Each strike object includes geographic coordinates, a timestamp, deviation, and a meta field. You can scope results to a bounding box using east, west, north, and south parameters. The src_mask parameter selects which lightning networks contribute: 4 targets the Blitzortung network by default; 7 combines all available sources. The response also returns count, bounds, source_mask, duration_seconds, and a copyright attribution string.

HTTP Polling Alternative

get_strikes_xhr delivers the same strike data over a standard HTTP request instead of a streaming connection. It adds fields not present in the streaming endpoint: deviation_m (deviation in meters), delay_ms (latency from strike to detection), per-strike station participation arrays, and wait_ms — a server-recommended polling interval. The size_marker field acts as a cursor, letting clients request only data newer than the last response. Use include_stations=true to attach station participation records to each strike.

Detector Station Metadata

get_stations returns the list of active Blitzortung network detectors for a named region. The region parameter accepts europe, oceania, or america. Each station object includes numeric id, latitude, longitude, altitude, city, country, and status. The response also includes a timeid field representing the 15-minute time bucket used server-side, station_count, and a copyright string. Station data is useful for understanding network density and correlating detection quality with sensor coverage in a given area.

Reliability & maintenanceVerified

The LightningMaps API is a managed, monitored endpoint for lightningmaps.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lightningmaps.org 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 lightningmaps.org 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
2d ago
Latest check
2/2 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
  • Map live lightning strike density over a custom geographic bounding box using the north/south/east/west filter params in get_strikes.
  • Build a weather alert dashboard that polls get_strikes_xhr on the server-recommended wait_ms interval and surfaces strikes with low deviation_m.
  • Correlate strike delay_ms values from get_strikes_xhr against station participation counts to assess detection latency by region.
  • Visualize Blitzortung detector coverage gaps by plotting station latitude, longitude, and altitude from get_stations for Europe, Oceania, and America.
  • Filter strikes to a country or state boundary by post-processing bounding-box results from get_strikes against a polygon dataset.
  • Log high-frequency strike intervals using the size_marker cursor in get_strikes_xhr to build a continuous time-series without duplicate records.
  • Estimate sensor network reliability by joining get_stations status fields with strike participation arrays returned by get_strikes_xhr.
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 LightningMaps.org have an official developer API?+
LightningMaps.org does not publish a documented public developer API. The underlying sensor data originates from Blitzortung.org, which is a volunteer-run network with its own community resources, but no official REST or streaming API is offered for third-party developers.
What does the `get_strikes_xhr` endpoint return that `get_strikes` does not?+
get_strikes_xhr adds deviation_m (deviation in meters), delay_ms (detection latency), per-strike station participation arrays, wait_ms (recommended polling interval), server_time, and a size_marker cursor for incremental polling. The streaming get_strikes endpoint does not include those fields.
Which geographic regions does `get_stations` cover?+
The region parameter accepts exactly three values: europe, oceania, and america. Stations outside those three named regions are not currently returned. You can fork the API on Parse and revise it to add coverage for additional regions if the underlying data becomes available.
Does the API return historical lightning data?+
Not currently. All three endpoints return recent or real-time data — get_strikes collects a short live window (up to 60 seconds), and get_strikes_xhr returns the most recent batch with a size_marker for incremental polling. No endpoint accepts a date range or queries archived strike history. You can fork the API on Parse and revise it to add a historical endpoint if a suitable data source is identified.
Is there a way to distinguish strike intensity or type (cloud-to-ground vs. intra-cloud)?+
The current strike objects expose coordinates, timestamps, deviation, and station participation data. Lightning type classification or intensity values are not present in the response fields. You can fork the API on Parse and revise it to surface additional classification fields if the source makes them available.
Page content last updated . Spec covers 3 endpoints from lightningmaps.org.
Related APIs in WeatherSee all →
zoom.earth API
Search Zoom Earth for places and get live environmental data including weather forecasts by coordinates, satellite imagery timestamps, active tropical storm tracks, active fires, and current platform status.
metoffice.gov.uk API
Access detailed UK weather forecasts, real-time lightning tracking, and weather warnings from the Met Office. Search locations to retrieve hourly, daily, regional, and long-range predictions, and monitor storm activity with spot forecasts across any geographic area.
weatherspark.com API
Get historical weather data, current METAR reports, and monthly climate summaries for any location by searching WeatherSpark's comprehensive weather database. Access detailed weather insights including temperature trends, precipitation patterns, and atmospheric conditions to power weather-dependent applications and analysis.
wunderground.com API
Access real-time weather conditions, multi-day forecasts, and detailed historical weather data from thousands of personal and airport weather stations worldwide. Search and retrieve current observations, hourly history, and monthly records to power your weather applications and analysis.
openweathermap.org API
Search for cities and retrieve live weather conditions and forecasts (current, minutely precipitation, hourly and daily) by coordinates or by city name.
hydro.chmi.cz API
Monitor real-time water conditions across 562+ Czech river stations by accessing live water levels, flow rates, temperatures, and flood alerts. Search and track specific stations to get detailed hydrological data and historical time series information from the Czech Hydrometeorological Institute.
hailpoint.com API
Retrieve historical hail maps and detailed storm impact data by location, state, city, or date range. Search for hail events by keyword or geographic filters, view damage severity categories, and access hail report markers with geographic coordinates.
flightradar.com API
Track flights in real-time, search for specific flight details, and look up information about airports and airlines worldwide. Monitor nearby aircraft by location, identify which airlines operate specific routes, and get comprehensive aviation data all in one place.