diff --git a/httpbin/httpbin.go b/httpbin/httpbin.go
index 7f5fa9e00926a6e0118be3e55bebc943a10153eb..921f56510b9500d2353a57414ffee2bc50e7e521 100644
--- a/httpbin/httpbin.go
+++ b/httpbin/httpbin.go
@@ -155,6 +155,9 @@ func (h *HTTPBin) Handler() http.Handler {
 	mux.HandleFunc("/absolute-redirect/", h.AbsoluteRedirect)
 	mux.HandleFunc("/redirect-to", h.RedirectTo)
 
+	mux.HandleFunc("/anything/", h.RequestWithBody)
+	mux.HandleFunc("/anything", h.RequestWithBody)
+
 	mux.HandleFunc("/cookies", h.Cookies)
 	mux.HandleFunc("/cookies/set", h.SetCookies)
 	mux.HandleFunc("/cookies/delete", h.DeleteCookies)
diff --git a/httpbin/static/index.html b/httpbin/static/index.html
index a4fa3c0001735d6289251a4d03ec12c870c3b66b..f19820baa4b95e70989a4e51be1a43a737f0e696 100644
--- a/httpbin/static/index.html
+++ b/httpbin/static/index.html
@@ -60,6 +60,7 @@
 <ul>
 <li><a href="/"><code>/</code></a> This page.</li>
 <li><a href="/absolute-redirect/6"><code>/absolute-redirect/:n</code></a> 302 Absolute redirects <em>n</em> times.</li>
+<li><a href="/anything"><code>/anything/:anything</code></a> Returns anything that is passed to request.</li>
 <li><a href="/base64/aHR0cGJpbmdvLm9yZw=="><code>/base64/:value</code></a> Decodes a Base64 encoded string.</li>
 <li><a href="/base64/decode/aHR0cGJpbmdvLm9yZw=="><code>/base64/decode/:value</code></a> Explicit URL for decoding a Base64 encoded string.</li>
 <li><a href="/base64/encode/httpbingo.org"><code>/base64/encode/:value</code></a> Encodes a string into Base64.</li>