NuGet V3 API
NuGet V3 API — Package metadata and search endpoints
NuGet V3 API exposes package metadata and search endpoints We verified a keyless GET endpoint returning JSON (Developer Utilities). Check the provider docs for rate limits and terms before production use.
GET https://api.nuget.org/v3/index.json
{
"version": "3.0.0",
"resources": [
{
"@id": "https://azuresearch-usnc.nuget.org/query",
"@type": "SearchQueryService",
"comment": "Query endpoint of NuGet Search service (primary)"
},
{
"@id": "https://azuresearch-ussc.nuget.org/query",
"@type": "SearchQueryService",
"comment": "Query endpoint of NuGet Search service (secondary)"
}
],
"@context": {
"@vocab": "http://schema.nuget.org/services#",
"comment": "http://www.w3.org/2000/01/rdf-schema#comment"
}
}curl "https://api.nuget.org/v3/index.json"const res = await fetch("https://api.nuget.org/v3/index.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.nuget.org/v3/index.json")
print(res.json())/v3/index.jsonPROBEDNuGet V3 API — Package metadata and search endpoints
/v3V3 — documented GET route.
/v3/1V3 details by ID (example: 1).
/v3?limit=10V3 — documented GET route.
/v3/search?q=testSearch by query parameters.
/v3/V3 — 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.
NuGet V3 API: common questions
Is NuGet V3 API free to use?
Yes — NuGet V3 API 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 NuGet V3 API need an API key?
No — NuGet V3 API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call NuGet V3 API from the browser?
Yes — NuGet V3 API 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 NuGet V3 API up right now?
As of our last scheduled check, NuGet V3 API is healthy with 100% uptime over 90 days and a 245 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.