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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
NuGet V3 API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.