A single release cycle (live status)
API · /endoflife-api
End-of-Life (EOL) API
Product end-of-life and support-lifecycle dates as an API, powered by endoflife.date — the community-maintained reference for when software stops being supported. Covers 450+ products across every layer of the stack: Linux distributions (Ubuntu, Debian, RHEL, Alpine…), programming languages (PHP, Python, Node.js, Java, Go, Ruby…), frameworks (Django, Laravel, Spring Boot, React, Angular…), databases (PostgreSQL, MySQL, MongoDB, Redis…), operating systems, browsers, hardware devices and more. List every tracked product; for any product get all of its release cycles with the release date, latest patch version and release date, LTS flag, active-support end date and end-of-life date; and look up a single release cycle on its own. Every cycle is enriched with a computed, live status calculated against today's date — whether the version is still supported, whether it has already reached end of life, how many days remain until end of life and whether active support has ended — so you can answer "is this version still supported?" and "how long until I must upgrade?" in one call. Ideal for dependency auditing, upgrade and migration planning, security and compliance dashboards, CI checks and platform inventories. Product slugs come from the products endpoint (e.g. php, ubuntu, nodejs, postgresql). Computed status is relative to the current UTC date. Data from endoflife.date (CC-BY-SA).
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 127 ms
- Server probes · 24h
- Subscribers
- 3,998
- active
- Total calls
- 12
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 700 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 700 calls/month
- 2 req/sec
- Products, cycles & live status
- No credit card
Starter
€6.00 /month
- 25,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 25k calls/month
- 6 req/sec
- Dependency auditing
- Email support
Pro
€19.00 /month
- 105,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 105k calls/month
- 15 req/sec
- CI checks & dashboards
- Priority support
Mega
€53.00 /month
- 450,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 450k calls/month
- 40 req/sec
- Fleet-wide inventories
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
DNS Propagation API
Check DNS propagation by querying a record across several major public resolvers at once — Google (8.8.8.8), Cloudflare (1.1.1.1), AdGuard and dns.sb — and seeing whether they all return the same answer. Pass a domain and a record type and the service queries every resolver in parallel and reports each resolver's answers, whether they are consistent (the change has fully propagated) or still differ (mid-propagation, stale caching or split-horizon DNS), the number of distinct answer sets and the union of all answers. Supported record types: A, AAAA, CNAME, MX, TXT, NS, SOA, SRV, CAA and PTR. A single-resolver endpoint queries one named resolver on its own, and a failing resolver is reported per-resolver without failing the whole call. Live DoH (DNS-over-HTTPS) JSON queries, always current. Built for verifying DNS changes after a migration or launch, debugging split-horizon or stale-cache issues, and uptime/propagation monitoring. A DNS propagation checker — distinct from single-resolver record lookup (dns), the email-authentication analyzer (emailsec) and WHOIS (whois). No upstream key, no cache.
api.oanor.com/dnspropagation-api
Terraform Registry API
The Terraform Registry — the home of Terraform and OpenTofu modules and providers — as an API. Look up any module for its latest version, total downloads, source repository, verified status, publish date and a ready-to-paste usage block, plus counts of its inputs, outputs and managed resources; read a module's full version history; search the registry of thousands of community modules (optionally filtered by provider); and look up any provider for its version, download count and tier (official / partner / community). Covers the infrastructure-as-code ecosystem from the terraform-aws-modules VPC, EKS and RDS modules to the hashicorp/aws, google and azurerm providers. Live from the official registry.terraform.io API. Ideal for IaC and GitOps tooling, module catalogs and dashboards, and platform-engineering automation. Open data from the Terraform Registry.
api.oanor.com/terraform-api
Artifact Hub API
Artifact Hub — the CNCF registry for cloud-native packages — as an API. Look up any Helm chart, OLM operator, Falco rule, OPA / Kyverno / Gatekeeper policy, Krew kubectl plugin, Tekton task and more for its version and app version, description, license, maintainers, keywords, repository (with verified-publisher and official flags), home and source links, and its full version history. Search the registry across any package kind. Covers the Kubernetes / cloud-native ecosystem from the Bitnami, Prometheus and Grafana Helm charts to Krew plugins and security policies. Live from the official artifacthub.io API. Ideal for GitOps and DevOps dashboards, supply-chain and update tooling, internal chart catalogs and Kubernetes platform engineering. Open data from Artifact Hub.
api.oanor.com/artifacthub-api
Docker Hub API
The container image registry — Docker Hub — as an API. Look up any image (repository) for its description, total pull count and star count, official status, last-updated date and categories, plus the ready-to-run `docker pull` command; list an image's tags and versions with each tag's compressed size, supported platforms (linux/amd64, linux/arm64, …) and publish date; and search the registry of millions of images. Covers everything from official images like nginx, postgres, redis, node, python and ubuntu to vendor images like bitnami/postgresql. Live from the official hub.docker.com API. Ideal for DevOps dashboards, CI/CD and supply-chain tooling, image catalogs and update automation. Open data from Docker Hub.
api.oanor.com/docker-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for End-of-Life (EOL) API?
What's the rate limit for End-of-Life (EOL) API?
How much does End-of-Life (EOL) API cost?
Can I cancel my subscription anytime?
Is End-of-Life (EOL) 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/endoflife-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/endoflife-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/endoflife-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/endoflife-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.