Discover/hailpoint.com API
live

hailpoint.com APIhailpoint.com

Access historical hail maps, storm impact data, damage categories, and hail report markers by location, state, city, or date range via the Hail Point API.

Endpoints
8
Updated
3mo ago
Try it
Page number for pagination.
Two-letter US state code (e.g. TX, IN) or 'can' for Canada.
End date in YYYY-MM-DD format.
City, State, or ZIP code to search near.
Damage category filter. Accepted values: scattered, major, severe, catastrophic.
Search radius in miles from keyword location.
Start date in YYYY-MM-DD format.
api.parse.bot/scraper/a31237b8-4777-49ae-acf9-c3a25a0801e7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a31237b8-4777-49ae-acf9-c3a25a0801e7/search_hail_maps?state=TX&keyword=Houston' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalclick to expand

Search for hail maps/events by keyword (city/state/ZIP), state code, category, and date range. Returns paginated results sorted by date with up to 15 items per page.

Input
ParamTypeDescription
pageintegerPage number for pagination.
statestringTwo-letter US state code (e.g. TX, IN) or 'can' for Canada.
date_tostringEnd date in YYYY-MM-DD format.
keywordstringCity, State, or ZIP code to search near.
categorystringDamage category filter. Accepted values: scattered, major, severe, catastrophic.
distanceintegerSearch radius in miles from keyword location.
date_fromstringStart date in YYYY-MM-DD format.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "count": "integer, number of items on this page",
    "items": "array of hail map event summaries with detail_url, id, thumbnail_url, title, category, hail_size, location, date, population_impacted, homes_impacted",
    "total_records": "string or null, total number of matching records"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 1,
      "items": [
        {
          "id": "40590",
          "date": "May 10, 2026",
          "title": "Hail Map Houston, TX May 10, 2026",
          "category": "Scattered Damage",
          "location": "Houston, TX",
          "hail_size": "1.75\" Hail",
          "detail_url": "https://www.hailpoint.com/40590/details/hail-map/Houston--TX-May-10.html",
          "mid_base64": "NDA1OTA=",
          "thumbnail_url": "https://www.hailpoint.com/uploads/maps/thumbs/20260510-2300.20260511-0800.location_196.thumbnail.png",
          "homes_impacted": "448",
          "population_impacted": "906"
        }
      ],
      "total_records": "0"
    },
    "status": "success"
  }
}

About the hailpoint.com API

The Hail Point API exposes 8 endpoints covering historical hail storm events across the US and Canada, returning structured data on damage categories, population and housing impact, hail size, and geographic report markers. The search_hail_maps endpoint lets you query by keyword, state, damage category, and date range, while get_hail_map_details returns a full impact breakdown table including population and area affected per hail size range.

Event Search and Filtering

The search_hail_maps endpoint accepts a keyword (city, state, or ZIP), a two-letter state code (or 'can' for Canada), a category filter (scattered, major, severe, catastrophic), a distance radius in miles, and date_from/date_to bounds. Results are paginated at 15 items per page and each item in the items array carries a detail_url, id, thumbnail_url, title, category, hail_size, location, date, and population_impac field. The same summary shape is returned by get_latest_hail_maps, get_hail_maps_by_state, and get_hail_maps_by_city, making it straightforward to switch between browse and search flows.

Detailed Storm Impact Data

get_hail_map_details takes a detail_url from any summary result and returns the full event record: title, category, event_info, hail_reports count, max_hail_size, and an impact_breakdown array. Each row in impact_breakdown contains hail_size, population, housing, and area_(sq._mi.) for that size band, making it possible to assess damage exposure at a granular level for insurance or property risk workflows.

Reference and Demo Endpoints

get_hail_damage_categories returns the platform's official category definitions (name and description), which map to the category filter values used across all search endpoints. get_hail_map_demo returns a sample storm event with up to 10 hail report sample_markers, each carrying lat, lng, and a report field — useful for testing map rendering before committing to paginated historical queries.

Geographic Shortcuts

get_hail_maps_by_state requires a two-letter US state code and pages through all events for that state. get_hail_maps_by_city accepts a city name with an optional state qualifier and returns the same paginated summary format. Both endpoints report total_records so you can pre-calculate how many pages to request.

Common use cases
  • Insurance underwriting tools that pull impact_breakdown housing and population data for a property's ZIP or city before issuing a policy.
  • Roofing and restoration contractors querying get_hail_maps_by_city to identify recent severe or catastrophic events near their service area.
  • Property management platforms surfacing historical hail risk scores derived from hail_size and category fields on listing pages.
  • Claims automation pipelines that verify a reported storm date and location against search_hail_maps results using date_from/date_to and keyword.
  • Map-based dashboards using get_hail_map_demo and sample_markers lat/lng fields to prototype storm visualization before loading full historical data.
  • Risk analytics products comparing storm frequency across states using get_hail_maps_by_state and aggregating total_records counts over time.
  • Research tools that combine max_hail_size and hail_reports fields from get_hail_map_details to rank the most impactful events in a region.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Hail Point have an official developer API?+
Hail Point does not publish an official public developer API. The data accessible here is available through hailpoint.com's website but not via any documented API they offer to third parties.
What does `get_hail_map_details` return beyond the summary fields?+
In addition to the title, category, and event_info available in summary results, get_hail_map_details returns hail_reports (total report count), max_hail_size, and an impact_breakdown array. Each element in that array breaks down population, housing, and area_(sq._mi.) affected for a specific hail_size band, giving a layered view of storm severity that summary results don't include.
Can I retrieve individual hail report markers for all historical events, not just the demo?+
Currently, geographic lat/lng markers are only returned by get_hail_map_demo, which covers a single sample event. The other endpoints return event-level summaries and impact tables rather than per-report coordinates. You can fork this API on Parse and revise it to add a markers endpoint for arbitrary events.
Does the API cover Canadian hail events?+
The search_hail_maps endpoint accepts state: 'can' to filter for Canadian events. The dedicated get_hail_maps_by_state and get_hail_maps_by_city endpoints are documented for US state codes and may not return Canadian results through those routes. If you need full Canadian city-level browsing, you can fork this API on Parse and revise it to extend those endpoints.
How does pagination work across the list endpoints?+
All list endpoints (search_hail_maps, get_latest_hail_maps, get_hail_maps_by_state, get_hail_maps_by_city) return up to 15 items per page. The response includes a page integer, a count of items on the current page, and a total_records string (or null) so you can calculate the total number of pages needed to retrieve a full result set.
Page content last updated . Spec covers 8 endpoints from hailpoint.com.
Related APIs in WeatherSee all →
sentinel-hub.com API
Access satellite imagery from around the world and retrieve spectral band data, timestamps, and geographic coverage information to analyze Earth observation data. Process and generate statistics from satellite images for your specific areas of interest using powerful image processing tools.
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.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
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.
breckenridge.com API
Check real-time snow conditions, weather forecasts, lift operations, and trail status at Breckenridge Ski Resort to plan your day on the mountain. View live mountain cameras and get up-to-the-minute updates on slopes, lifts, and weather before you head out.
surfline.com API
Check real-time surf conditions, forecasts for waves and wind, tide predictions, and live camera feeds from thousands of surf spots around the world. Browse spots by geographic region and access detailed weather data to plan your perfect surfing session.
ingres.iith.ac.in API
Access groundwater resource estimation data across India at multiple geographic levels—from national summaries down to block-level details—and search specific locations to track groundwater availability and assessment trends. View historical assessment years and generate reports to analyze groundwater resources by state, district, or region.
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.
Hail Point API – Historical Hail Maps & Storm Data · Parse