jsDelivr
Package versions and CDN download stats as JSON
Query metadata for any npm or GitHub package served by the jsDelivr CDN, including version lists and resolved dist-tags. A companion stats API reports download counts. No key required.
GET https://data.jsdelivr.com/v1/packages/npm/jquery
{
"type": "npm",
"name": "jquery",
"tags": {
"latest": "4.0.0",
"beta": "4.0.0-rc.2"
},
"versions": [
{
"version": "4.0.0",
"links": {
"self": "https://data.jsdelivr.com/v1/packages/npm/jquery@4.0.0"
}
}
]
}curl "https://data.jsdelivr.com/v1/packages/npm/jquery"const res = await fetch("https://data.jsdelivr.com/v1/packages/npm/jquery");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://data.jsdelivr.com/v1/packages/npm/jquery")
print(res.json())/packages/npm/jqueryPROBEDPackage versions and CDN download stats as JSON
/packagesPackages — documented GET route.
/packages/1Packages details by ID (example: 1).
/packages?limit=10Packages — documented GET route.
/packages/search?q=testSearch by query parameters.
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.
jsDelivr: common questions
Is jsDelivr free to use?
Yes — jsDelivr is a free developer tools API. Free tier: Free, no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does jsDelivr need an API key?
No — jsDelivr needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call jsDelivr from the browser?
Yes — jsDelivr 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 jsDelivr up right now?
As of our last scheduled check, jsDelivr is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.