Skip to main content

Installing

Enlace mounts as middleware in your app. Pick your framework:

dotnet add package Enlace.AspNetCore
// Program.cs
builder.Services.AddEnlace();
// ...
app.UseEnlace(); // mounts at /enlace by default

If you're already running Swashbuckle conventionally, that's it — no spec needed. See the ASP.NET Core adapter page if it isn't found automatically.

spec is a file path, a URL, or an already-parsed OpenAPI 3.x object — whatever's easiest to point at your API's own document.

Open the route you mounted it at (/enlace by default) and you'll see every operation from your spec, ready to drag onto the canvas.

Next: try it against a sample API first, or jump straight to building a chain with your own.