diff --git a/src/Tgstation.Server.Host/Core/SwaggerConfiguration.cs b/src/Tgstation.Server.Host/Core/SwaggerConfiguration.cs index 8f86359ac4..8178a3ce24 100644 --- a/src/Tgstation.Server.Host/Core/SwaggerConfiguration.cs +++ b/src/Tgstation.Server.Host/Core/SwaggerConfiguration.cs @@ -342,6 +342,12 @@ namespace Tgstation.Server.Host.Core if (context == null) throw new ArgumentNullException(nameof(context)); + swaggerDoc.ExternalDocs = new OpenApiExternalDocs + { + Description = "API Usage Documentation", + Url = new Uri("https://tgstation.github.io/tgstation-server/api.html"), + }; + swaggerDoc.Components.Parameters.Add(ApiHeaders.InstanceIdHeader, new OpenApiParameter { In = ParameterLocation.Header,