Naar de inhoud
GET /v1/volcano

A single volcano by GVP number or name

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/volcanoes-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/volcanoes-api/v1/volcano" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volcanoes-api/v1/volcano", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volcanoes-api/v1/volcano");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/volcanoes-api/v1/volcano",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "id": 211020,
        "name": "Vesuvius",
        "type": "Stratovolcano",
        "region": "European Volcanic Regions",
        "country": "Italy",
        "summary": "One of the world's most noted volcanoes, Vesuvius (Vesuvio) forms a dramatic backdrop to the Bay of Naples. The active cone was constructed within a large caldera of the older Monte Somma edifice, thought to have formed incrementally beginning about 17,000 years ago. The Monte Somma caldera wall has channeled lava flows and pyroclastic flows primarily to the south and west. Eight major explosive eruptions have taken place in the last 17,000 years, often accompanied by large pyroclastic flows and surges, such as during the 79 CE Pompeii eruption. Intermittent eruptions since 79 CE were followed by a period of frequent long-term explosive and effusive eruptions between 1631 and 1944. The large 1631 eruption produced pyroclastic flows that reached as far as the coast and caused great destruction. Many towns are located on the flanks, and several million people live within areas that could be affected by eruptions.",
        "landform": "Composite",
        "latitude": 40.821,
        "longitude": 14.426,
        "subregion": "Italian Peninsula Volcanic Provinces",
        "elevation_m": 1281,
        "last_eruption": "1944",
        "geologic_epoch": "Holocene",
        "tectonic_setting": "Subduction zone / Continental crust (> 25 km)"
    },
    "meta": {
        "timestamp": "2026-05-31T03:47:07.777Z",
        "request_id": "26db9592-f8ae-4c4b-a716-f5fb9059cefe"
    },
    "status": "ok",
    "message": "Volcano retrieved",
    "success": true
}