Case doubling time
API · /epidemic-api
Epidemiology API
Epidemiology-basics maths as an API, computed locally and deterministically. The herd-immunity endpoint computes the herd-immunity threshold HIT = 1 − 1/R0 — the immune fraction of a population at which an outbreak can no longer sustain itself — from the basic reproduction number R0, and adjusts for an imperfect vaccine by dividing by its efficacy, so a disease with R0 = 3 needs about 67 % immune (74 % vaccinated with a 90 %-effective vaccine) while measles at R0 ≈ 15 needs about 93 %. The r-effective endpoint computes the effective reproduction number Re = R0 · susceptible fraction and flags whether the epidemic is growing (Re > 1) or shrinking. The final-size endpoint solves the final-epidemic-size equation Z = 1 − e^(−R0·Z) for the eventual attack rate of an unmitigated SIR epidemic — about 80 % at R0 = 2. The doubling-time endpoint gives the case-doubling time from a growth rate, or from R0 and the serial interval. Fractions are 0–1 and percentages are derived. Everything is computed locally and deterministically, so it is instant and private. Ideal for public-health, epidemiology-education, dashboard, science-communication and outbreak-planning app developers, herd-immunity and reproduction-number tools, and health software. Simple compartmental relations for education and planning, not a substitute for full epidemiological modelling. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. This is epidemiology basics; for population-genetics Hardy-Weinberg use a genetics API.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 74 ms
- Server probes · 24h
- Subscribers
- 3,980
- active
- Total calls
- 95
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 4,250 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 4,250 calls/month
- 2 req/sec
- Herd immunity + Re + final size + doubling
- No credit card
Starter
€5.10 /month
- 42,500 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 42,500 calls/month
- 6 req/sec
- Vaccine efficacy, serial interval
- Email support
Pro
€13.80 /month
- 199,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 199,000 calls/month
- 15 req/sec
- Dashboard & planning pipelines
- Priority support
Mega
€42.00 /month
- 1,215,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 1,215,000 calls/month
- 40 req/sec
- Platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Disease & Public Health API
Global public-health data as an API, built on the open disease.sh dataset. Pull worldwide COVID-19 totals (cases, deaths, recovered, active, critical, tests and per-million rates), the same figures for any country (e.g. germany), continent (e.g. Europe) or US state (e.g. California), and the full sortable country list ranked by cases, deaths, tests and more. Track vaccine-coverage timelines globally or per country, and pull historical day-by-day case, death and recovery timelines for any country. Real data, no key needed upstream. Ideal for health dashboards, epidemiology research, data journalism and analytics.
api.oanor.com/disease-api
WHO Health Statistics API
The World Health Organization's Global Health Observatory (GHO) as an API — authoritative global health statistics for every WHO member state. Search a catalogue of more than 3,000 health indicators spanning life expectancy and healthy life expectancy, mortality and causes of death, immunization and vaccine coverage, communicable and noncommunicable disease burden, maternal and child health, nutrition, mental health, health workforce, health financing, water and sanitation, and risk factors such as tobacco, alcohol and obesity. For any indicator, pull a country's complete time-series — each data point with its year, value, the WHO uncertainty interval (low and high bounds), the WHO region and the breakdown dimension (for example sex) — or compare the indicator across many countries for a chosen year, or the latest available year per country, ranked by value. Country codes are ISO3 (DEU, USA, JPN) or WHO region codes; results can be filtered by sex (both, male or female). Ideal for public-health research, journalism, NGO and policy dashboards, epidemiology and global-development analysis. Indicator codes come from the indicators endpoint (e.g. WHOSIS_000001 is life expectancy at birth). Data from the WHO Global Health Observatory.
api.oanor.com/who-api
Programming Languages API
The language definitions GitHub uses to recognise code (the open-source Linguist data) as an API — a clean reference for syntax highlighting, file-type detection, repository dashboards and developer tooling. For each of 800+ languages the API returns its type (programming, markup, data or prose), its brand colour (the hex GitHub paints it), the file extensions associated with it, common aliases, the GitHub language id and the editor (ace) mode. Look a language up by name or alias (golang resolves to Go), reverse-look-up which language(s) own a file extension (.py → Python; .h → C, C++, Objective-C), list the languages of a type, search, or list them all. Distinct from languages-api (ISO 639 human languages) — this is the programming-language reference. Served from memory — always fast.
api.oanor.com/proglang-api
MIME Types API
The canonical MIME / media-type database (the jshttp mime-db used by Express and most of the Node ecosystem: IANA + Apache + nginx), served from memory — no key. Resolve a media type to its file extensions, charset and compressibility; reverse-lookup the media type(s) for a file extension (e.g. png → image/png); and search or list types by source. 2,600+ media types, 1,000+ with file extensions. Lean, predictable JSON. Ideal for upload validation, Content-Type resolution, file-type detection, download handlers and developer tooling.
api.oanor.com/mimetypes-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Epidemiology API?
What's the rate limit for Epidemiology API?
How much does Epidemiology API cost?
Can I cancel my subscription anytime?
Is Epidemiology API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/epidemic-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/epidemic-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/epidemic-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/epidemic-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.