This document discusses building RESTful interfaces using the Mojolicious framework in Perl. It notes that implementing REST with Mojolicious is easy, but can lead to an anti-pattern of encoding media types in URLs instead of using accept headers. The recommended practice is to use accept headers to specify media types rather than encoding them in the URL. The document provides an example of using Mojolicious to respond with different media types depending on the accept header.