VOOZH about

URL: https://apify.com/parseforge/usgs-volcano-alerts-scraper/api/python

โ‡ฑ USGS Volcano Alerts Scraper API in Python ยท Apify


Pricing

from $1.00 / 1,000 results

Go to Apify Store

USGS Volcano Alerts Scraper

Track live volcano alert levels and aviation color codes from the USGS Volcano Hazards Program across five U.S. observatories. Each record returns volcano name, VNUM, alert level, color code, latitude, longitude, and the latest notice link. Built for aviation safety and hazard maps.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Share

You might also like

USGS Volcano Scraper โ€” Alert Levels & Aviation Color Codes

compute-edge/usgs-volcano-monitor-scraper

Pull every USGS-monitored U.S. volcano from the Volcano Hazards Program HANS feed. Alert level (NORMAL/ADVISORY/WATCH/WARNING), aviation color code, responsible observatory, and latest VONA notice metadata.

AirLive Aviation News Scraper

parseforge/airlive-aviation-news-rss-scraper

Tap the AirLive feed for breaking aviation industry news with article title, link, publication date, author, and summary. Filter by keyword to track airline incidents, route launches, and safety stories for newsroom monitoring, briefings, and aviation research.

USGS Earthquake Scraper

compute-edge/usgs-earthquake-scraper

Scrape real-time and historical earthquake data from the USGS Earthquake Hazards Program including magnitude, location, depth, tsunami alerts, and significance scores.

USGS Earthquake Monitor

dash_authority/usgs-earthquake-monitor

Fetch real-time earthquake data from the USGS Earthquake Hazards Program API. Query seismic events by magnitude, location, and time range. Categories: earthquake, natural hazards, USGS, real-time seismic data.

๐Ÿ‘ User avatar

Dash Authority

2

USGS Real-Time Earthquake Data

moving_beacon-owner1/my-actor-85

Scrapes real-time earthquake data from the USGS Earthquake Hazards Program GeoJSON feeds. No API key required.

2

Usgs Data Info Parser Spider

getdataforme/usgs-data-info-parser-spider

The Usgs Data Info Parser Spider efficiently extracts and parses data from USGS URLs, offering structured JSON output. It features automated extraction, customizable parameters, scalable performance, and user-friendly setup, ideal for market research, academic projects, and business automation....

You can access the USGS Volcano Alerts Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโ€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={"maxItems":10}
9
10# Run the Actor and wait for it to finish
11run = client.actor("parseforge/usgs-volcano-alerts-scraper").call(run_input=run_input)
12
13# Fetch and print Actor results from the run's dataset (if there are any)
14print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
15for item in client.dataset(run["defaultDatasetId"]).iterate_items():
16print(item)
17
18# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

USGS Volcano Alerts Scraper API in Python

The Apify API client for Python is the official library that allows you to use USGS Volcano Alerts Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

USGS Volcano Alerts Scraper API in JavaScript

USGS Volcano Alerts Scraper API through CLI

USGS Volcano Alerts Scraper OpenAPI definition

USGS Volcano Alerts Scraper API