URLExecute
URLExecute[url] executes the specified URL, importing whatever result is generated.
URLExecute[url, {param1 -> val1, param2 -> val2, …}] executes the specified URL, adding elements with names parami and values vali.
URLExecute[url, params, format] imports the result using the specified format.
URLExecute[HTTPRequest[…], …] executes the specified HTTP request.
Examples
URLExecute["https://httpbin.org/get"]
(* <|"args" -> <||>, "headers" -> ...| *)URLExecute["https://httpbin.org/post", {"key" -> "value"}, "JSON"]
(* <|"data" -> ...|> *)Please visit the official Wolfram Language Reference for more details.