1

does anyone knows a good documentation for nuget service endpoints?

I'm looking for it for both nuget v2 and v3 (v2 in priority as V3 is still in contruction).

jroquelaure
  • 533
  • 3
  • 13

2 Answers2

3

Updating several years later: There is now official documentation for the NuGet server API over at microsoft.com.

taleinat
  • 8,441
  • 1
  • 30
  • 44
1

There is no official documentation of NuGet API, but since NuGet is open source, you can take a look here: https://github.com/NuGet/NuGetGallery

The API requests handling code is located in this file: https://github.com/NuGet/NuGetGallery/blob/master/src/NuGetGallery/Controllers/ApiController.cs

skofman
  • 41
  • 3