From c966870c5b35ab1f3365ccccebf9952074097e9e Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 16 Mar 2025 19:51:22 +0100 Subject: [PATCH] quick-e2e: Add HTTP requests for fetching project version list and info from Modrinth API --- tools/quick-e2e/http/mordinth.http | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tools/quick-e2e/http/mordinth.http diff --git a/tools/quick-e2e/http/mordinth.http b/tools/quick-e2e/http/mordinth.http new file mode 100644 index 00000000..28c3a182 --- /dev/null +++ b/tools/quick-e2e/http/mordinth.http @@ -0,0 +1,8 @@ +### Get version list of a project +@project=fancyholograms +GET https://api.modrinth.com/v2/project/{{project}}/version +# download url is also included in the response + +### Get version info +@version=rFLuWfOG +GET https://api.modrinth.com/v2/project/{{project}}/version/{{version}} \ No newline at end of file