Drupal.org

Read Drupal.org projects, issues and users as JSON

📚 Open DataUNMONITOREDchecked 12 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
    }
  ]
}
Call itcurl · fetch · python
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())
Endpoints · 3On scheduleFULL DOCS ↗
First rollup pending — GET /node.json?limit=1 has been probed
GET/node.json?limit=1PROBED

Read Drupal.org projects, issues and users as JSON

GET/node.json?limit=5

Node Json — documented GET route.

GET/node.json?page=1

Node Json — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.