Drupal.org
Read Drupal.org projects, issues and users as JSON
Drupal.org exposes its own content through a read-only Services API, returning nodes — issues, projects, users and more — as paginated JSON. Hit /api-d7/node.json to page through the data; no key is needed for reads. Useful for dashboards over the Drupal ecosystem.
GET https://www.drupal.org/api-d7/node.json?limit=1
{
"self": "https://www.drupal.org/api-d7/node?limit=1",
"last": "https://www.drupal.org/api-d7/node?limit=1&page=2198237",
"list": [
{
"nid": 15,
"type": "project_issue",
"title": "sunflower.theme: incorrect \"teaser\" / \"read more\" handling",
"url": "https://www.drupal.org/project/drupal/issues/15"
}
]
}curl "https://www.drupal.org/api-d7/node.json?limit=1"const res = await fetch("https://www.drupal.org/api-d7/node.json?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.drupal.org/api-d7/node.json?limit=1")
print(res.json())/node.json?limit=1PROBEDRead Drupal.org projects, issues and users as JSON
/node.json?limit=5Node Json — documented GET route.
/node.json?page=1Node Json — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Drupal.org: common questions
Is Drupal.org free to use?
Yes — Drupal.org is a free open data API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Drupal.org need an API key?
No — Drupal.org needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Drupal.org from the browser?
Yes — Drupal.org returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Drupal.org up right now?
As of our last scheduled check, Drupal.org is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.