![Localhost]()
If you are a developer, tester, or manager, sometimes understanding the various methods of API can be a challenge when building and consuming the application.
Generating good documentation and help pages for your Web API, using Swagger with .NET Core is as easy as adding a couple of NuGet and modifying the Startup.cs
Let’s start downloading simple To-do projects from Github.
- Download and run TodoMvcSolution from the below link.
https://github.com/SmartITAz/TodoMvcSolution
![TodoMvcSolution]()
- NuGet Packages
Install the below NuGet package
Install-Package Swashbuckle.AspNetCore
Configure Swagger in the Startup.cs
Add the Swagger generator to the service collection after services.AddMvc();
Enable the middleware for serving the generated JSON document after the app.UseStaticFiles();
Add the below background yellow lines in your Startup file.
Go to http://localhost:63274/swagger/
Note. Your local port number may be different than ours, use your local port number.
![Local port number]()
Click on Try it out and you will see the response in the Response body section.
![ASP.NET Core]()
Here is the Web API
Note. We have two controller files, TodoController and TodoApiController. TodoController is an MVC Controller and Swagger did not show the API methods, because it does not know how to route and also controller methods return a View.
Summary
In this article, we learned,
NOTE
If you need to copy and paste the code download the pdf file locally.
Download source code from GitHub.