What is the default Swagger UI URL in Swashbuckle?

Viewed 2259

I am investigating a web app and I can see the API URL via the dev-tools (network calls), but I do not know the Swagger UI URL for this API. It is probably a C# API. What is the default Swagger UI URL?

UPDATE:

It is specifically Swashbuckle.

1 Answers

Use http://hostipaddress:6050/swagger

This will automatically redirect you to
http://hostipaddress:6050/swagger/index.html

Related