Module metadata
API · /terraform-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 health
degraded- Uptime
- 80.00%
- Server probes · 24h
- Avg latency
- 550 ms
- Server probes · 24h
- Subscribers
- 3,396
- active
- Total calls
- 105
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 3,720 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 3,720 calls/month
- 2 req/sec
- Module + versions + search + provider
- No credit card
Starter
€4.55 /month
- 50,100 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 50.1k calls/month
- 8 req/sec
- Input/output counts + usage block
- Email support
Pro
€13.65 /month
- 245,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 245k calls/month
- 20 req/sec
- IaC tooling / module catalogs
- Priority support
Mega
€35.95 /month
- 1,220,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.22M calls/month
- 50 req/sec
- Platform-engineering automation
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Go Modules API
The Go package ecosystem as an API. Look up any Go module by its import path for its latest version, license, source repository, total version count and known security advisories; read a module's full version history with publication dates; and get a module's declared dependencies — direct and indirect — parsed straight from its go.mod, with the required Go version. Covers the entire public Go module graph, from github.com/gin-gonic/gin, github.com/spf13/cobra and golang.org/x/text to gorm.io/gorm and k8s.io/client-go. Live from the official Go module proxy (proxy.golang.org) and Google's deps.dev. Ideal for dependency and supply-chain tooling, SBOM generation, package dashboards and Go developer portals. Modules are addressed by full import path. Open data.
api.oanor.com/gomod-api
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
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.oanor.com/endoflife-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
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Terraform Registry API?
What's the rate limit for Terraform Registry API?
How much does Terraform Registry API cost?
Can I cancel my subscription anytime?
Is Terraform Registry 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/terraform-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/terraform-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/terraform-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/terraform-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.