Due date from LMP / conception / due
API · /pregnancy-api
Pregnancy Due Date API
Pregnancy and due-date maths as an API, using the standard Naegele's rule (40 weeks / 280 days from the last menstrual period). The due-date endpoint takes the last menstrual period, the conception date, or a known due date — whichever you have — and returns the due date, the estimated conception date and the fertile window. The gestational-age endpoint reports how far along a pregnancy is as of any reference date: gestational age in weeks and days, the trimester, days remaining, progress percent, and whether it is overdue. The milestones endpoint lists the key dates of a pregnancy — the trimester boundaries, the anatomy-scan window, viability at 24 weeks, full term at 37–40 weeks, the due date and post-term at 42 weeks. All dates are handled in UTC and computed locally and deterministically. Ideal for pregnancy and fertility apps, midwifery and clinical tools, and parenting and family-planning products. Informational only — not medical advice. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. This is pregnancy date maths; for general date arithmetic use a datetime API.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 78 ms
- Server probes · 24h
- Subscribers
- 3,484
- active
- Total calls
- 76
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 7,035 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 7,035 calls/month
- 2 req/sec
- Due date + GA + milestones
- No credit card
Starter
€8.55 /month
- 16,550 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 16.55k calls/month
- 8 req/sec
- LMP / conception / due-date input
- Email support
Pro
€28.45 /month
- 216,500 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 216.5k calls/month
- 20 req/sec
- Pregnancy / fertility app pipelines
- Priority support
Mega
€66.45 /month
- 1,125,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.125M calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Fruit Nutrition API
Fruit nutrition and botanical taxonomy as an API, built on the open Fruityvice dataset. Get every fruit with its scientific classification — family, genus and order — and its per-100g nutrition: calories, sugar, carbohydrates, protein and fat. Look up a single fruit by name, list every fruit in a botanical family (e.g. Rosaceae), genus (e.g. Prunus) or order (e.g. Rosales), or filter the whole catalogue by a nutrient range — for example all fruits with under 5g of sugar, sorted lowest first. Real data, no key needed upstream. Ideal for nutrition and diet apps, smoothie and recipe tools, health trackers and educational projects.
api.oanor.com/fruit-api
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
Sunscreen & UV API
Sun-safety maths as an API, computed locally and deterministically — the burn-time, SPF and reapplication numbers a sunscreen, weather or outdoor app keeps people safe with. The burntime endpoint estimates how long until sunburn from the Fitzpatrick skin type (1 very fair to 6 deeply pigmented), the UV index and the SPF: unprotected time is a skin-type base (type II around 15 minutes) scaled by 6 ÷ UV index, and protected time is that times the SPF — so fair type-II skin at UV 8 burns in about 11 minutes bare, or roughly 5½ hours under SPF 30, while very fair type-I skin in extreme UV 11 burns in 5 minutes. The spf endpoint flips it: the SPF needed = your desired minutes outdoors ÷ the unprotected time, with the reminder that real protection plateaus around SPF 30–50. The amount endpoint covers the part people get wrong — about 2 mg/cm², roughly 1 ounce (30 g, a shot glass) for a full adult body, reapplied every two hours — and totals the sunscreen for a day out. Everything is computed locally and deterministically, so it is instant and private. Ideal for sun-safety, weather, skincare and outdoor app developers, UV-alert and reminder tools, and wellness software. Pure local computation — no key, no third-party service, instant. Educational estimates, not medical advice. Live, nothing stored. 3 compute endpoints.
api.oanor.com/sunscreen-api
Body Metrics API
Anthropometric body-metrics maths as an API, computed locally and deterministically. The body-surface-area endpoint computes the body surface area in square metres from height and weight by five established formulas — Mosteller √(height·weight/3600), DuBois, Haycock, Gehan-George and Boyd — with their average, the figure used for chemotherapy dosing and cardiac index. The lean-mass endpoint estimates lean body mass from height, weight and sex by the Boer, James and Hume formulas, with the fat mass and body-fat percent that follow. The waist-ratio endpoint computes the waist-to-hip ratio (fat distribution) and the waist-to-height ratio — where keeping your waist under half your height is the simple healthy rule — with WHO-style risk bands. Heights and circumferences are in centimetres, weight in kilograms. Everything is computed locally and deterministically, so it is instant and private. Ideal for health, fitness, clinical, telemedicine and wellness app developers, body-composition and dosing tools, and health education. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is body surface area, lean mass and waist ratios; for BMI, body fat and ideal weight use a BMI API and for BMR and TDEE a BMR API.
api.oanor.com/bodymetrics-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Pregnancy Due Date API?
What's the rate limit for Pregnancy Due Date API?
How much does Pregnancy Due Date API cost?
Can I cancel my subscription anytime?
Is Pregnancy Due Date 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/pregnancy-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/pregnancy-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/pregnancy-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/pregnancy-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.