NuGet V3 API

NuGet V3 API — Package metadata and search endpoints

📚 Open DataUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /v3/index.json awaits first probe
GET/v3/index.jsonPROBED

NuGet V3 API — Package metadata and search endpoints

GET/v3

V3 — documented GET route.

GET/v3/1

V3 details by ID (example: 1).

GET/v3?limit=10

V3 — documented GET route.

GET/v3/search?q=test

Search by query parameters.

GET/v3/

V3 — 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

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.