Reputation: 553
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).
Upvotes: 1
Views: 624
Reputation: 8701
Updating several years later: There is now official documentation for the NuGet server API over at microsoft.com.
Upvotes: 3
Reputation: 41
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
Upvotes: 1