diff --git a/apps/api/urls.py b/apps/api/urls.py
index 8b0e1a6ee2d11582d12d1ce685e3b7f618dbe292..3e61d5876081e05dbac3ac8515ec8c033adc037b 100644
--- a/apps/api/urls.py
+++ b/apps/api/urls.py
@@ -48,6 +48,6 @@ app_name = 'api'
 # Additionally, we include login URLs for the browsable API.
 urlpatterns = [
     url('^', include(router.urls)),
-    url('me', UserInformationView.as_view()),
+    url('^me/', UserInformationView.as_view()),
     url('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
 ]