From 70635b485cf1a1f76c5ffde89ca10879ca5135a0 Mon Sep 17 00:00:00 2001 From: Vaibhav Srivastava Date: Sun, 23 Aug 2026 15:12:50 +0530 Subject: [PATCH] docs: fix broken OpenAPI definition link in README The OpenAPI definition link pointed at pkg/web/openapi/, which 404s since the package moved to pkg/http/openapi/. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d211b376..962f0ef8e 100644 --- a/README.md +++ b/README.md @@ -353,7 +353,7 @@ using the CLI flag `-api.http.address`. It is generated using [gRPC gateway](https://github.com/grpc-ecosystem/grpc-gateway) and is thus providing the same functionality as the gRPC API. To learn more about the HTTP API please have a look at the [API documentation](https://www.conduit.io/api), -[OpenAPI definition](https://github.com/ConduitIO/conduit/blob/main/pkg/web/openapi/swagger-ui/api/v1/api.swagger.json) +[OpenAPI definition](https://github.com/ConduitIO/conduit/blob/main/pkg/http/openapi/swagger-ui/api/v1/api.swagger.json) or run Conduit and navigate to `http://localhost:8080/openapi` to open a [Swagger UI](https://github.com/swagger-api/swagger-ui) which makes it easy to try it out.