Data

Countries where guinea worm disease is endemic

WHO

What you should know about this indicator

  • A country has to have no cases of guinea worm disease for three years while being actively surveilled to be "certified disease free".
  • A disease outbreak is endemic in a country if it is consistently present in the country. Countries labeled pre-certification are endemic countries that have reported zero indigenous cases in the calendar year. Countries labeled pending surveillance have not had sufficient testing to determine their status or the number of cases in the country.

How is this data described by its producer - WHO?

Elimination of dracunculiasis is the confirmed absence of the emergence of adult female worms (the interruption of transmission of Dracunculus medinensis) in humans and animals for three consecutive years or longer from a country with such a low risk of reintroduction of the parasite that preventive measures could be reduced to a strict minimum.

Countries where guinea worm disease is endemic
WHO
The current and historical values for the status of as certified by the WHO. To be certified as free of guinea worm disease, a country must have reported zero indigenous cases through active surveillance for at least three consecutive years.
Source
World Health Organization (2025)with major processing by Our World in Data
Last updated
August 1, 2025
Next expected update
August 2026
Date range
1996–2024

Sources and processing

World Health Organization (2018)

Data published by

Certification status of dracunculiasis eradication: World Health Organization; 2018. Licence: CC BY-NC-SA 3.0 IGO

Retrieved on
August 1, 2025

World Health Organization – Certification status of dracunculiasis eradication

Retrieved on
June 17, 2024
Citation
This is the citation of the original data obtained from the source, prior to any processing or adaptation by Our World in Data. To cite data downloaded from this page, please use the suggested citation given in Reuse This Work below.
World Health Organization. Certification status of dracunculiasis eradication, 2017
Retrieved on
June 17, 2024
Citation
This is the citation of the original data obtained from the source, prior to any processing or adaptation by Our World in Data. To cite data downloaded from this page, please use the suggested citation given in Reuse This Work below.
World Health Organization. Certification status of dracunculiasis eradication, 2017

All data and visualizations on Our World in Data rely on data sourced from one or several original data providers. Preparing this original data involves several processing steps. Depending on the data, this can include standardizing country names and world region definitions, converting units, calculating derived indicators such as per capita measures, as well as adding or adapting metadata such as the name or the description given to an indicator.

At the link below you can find a detailed description of the structure of our data pipeline, including links to all the code used to prepare data across Our World in Data.

Read about our data pipeline
Notes on our processing step for this indicator

The current and historical values for the status of Guinea worm disease (Dracunculiasis) as certified by the WHO. To be certified as free of guinea worm disease, a country must have reported zero indigenous cases through active surveillance for at least three consecutive years. Data regarding certification status is available at the WHO: https://web.archive.org/web/20211024081702/https://apps.who.int/dracunculiasis/dradata/html/report_Countries_t0.html We have added the recent changes to Guinea worm disease certification: - Angola has had endemic status since 2020: https://www.who.int/news/item/23-09-2020-eradicating-dracunculiasis-human-cases-and-animal-infections-decline-as-angola-becomes-endemic - Kenya was certified guinea worm free in 2018: https://www.who.int/news/item/21-03-2018-dracunculiasis-eradication-south-sudan-claims-interruption-of-transmission-in-humans - DRC was certified guinea worm free in 2022: https://www.who.int/news/item/15-12-2022-the-democratic-republic-of-the-congo-certified-free-of-dracunculiasis-transmission-by-who

How to cite this page

To cite this page overall, including any descriptions, FAQs or explanations of the data authored by Our World in Data, please use the following citation:

“Data Page: Countries where guinea worm disease is endemic”, part of the following publication: Esteban Ortiz-Ospina and Max Roser (2016) - “Global Health”. Data adapted from World Health Organization. Retrieved from https://archive.ourworldindata.org/20260304-094028/grapher/progress-towards-guinea-worm-disease-eradication.html [online resource] (archived on March 4, 2026).

How to cite this data

In-line citationIf you have limited space (e.g. in data visualizations), you can use this abbreviated in-line citation:

World Health Organization (2025) – with major processing by Our World in Data

Full citation

World Health Organization (2025) – with major processing by Our World in Data. “Countries where guinea worm disease is endemic – WHO” [dataset]. World Health Organization, “Certification status of dracunculiasis eradication” [original data]. Retrieved April 1, 2026 from https://archive.ourworldindata.org/20260304-094028/grapher/progress-towards-guinea-worm-disease-eradication.html (archived on March 4, 2026).

Quick download

Download the data shown in this chart as a ZIP file containing a CSV file, metadata in JSON format, and a README. The CSV file can be opened in Excel, Google Sheets, and other data analysis tools.

Data API

Use these URLs to programmatically access this chart's data and configure your requests with the options below. Our documentation provides more information on how to use the API, and you can find a few code examples below.

Data URL (CSV format)
https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.csv?v=1&csvType=full&useColumnShortNames=false
Metadata URL (JSON format)
https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.metadata.json?v=1&csvType=full&useColumnShortNames=false

Code examples

Examples of how to load this data into different data analysis tools.

Excel / Google Sheets
=IMPORTDATA("https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.csv?v=1&csvType=full&useColumnShortNames=false")
Python with Pandas
import pandas as pd
import requests

# Fetch the data.
df = pd.read_csv("https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.csv?v=1&csvType=full&useColumnShortNames=false", storage_options = {'User-Agent': 'Our World In Data data fetch/1.0'})

# Fetch the metadata
metadata = requests.get("https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.metadata.json?v=1&csvType=full&useColumnShortNames=false").json()
R
library(jsonlite)

# Fetch the data
df <- read.csv("https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.csv?v=1&csvType=full&useColumnShortNames=false")

# Fetch the metadata
metadata <- fromJSON("https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.metadata.json?v=1&csvType=full&useColumnShortNames=false")
Stata
import delimited "https://ourworldindata.org/grapher/progress-towards-guinea-worm-disease-eradication.csv?v=1&csvType=full&useColumnShortNames=false", encoding("utf-8") clear