diff --git a/gracedb/api.py b/gracedb/api.py
index ced47a2a8191d10ad59f12551832f5b63b4b43c1..8130843b67473d8ae1afe47a02990e429e45549d 100644
--- a/gracedb/api.py
+++ b/gracedb/api.py
@@ -624,9 +624,12 @@ class TagList(APIView):
     def get(self, request):
         # Return a list of links to all tag objects.
         rv = {
-                'tags' : [ reverse("tag-detail", args=[tag.name],
-                                   request=request)
-                           for tag in Tag.objects.all() ]
+#                 'tags' : [ reverse("tag-detail", args=[tag.name],
+#                                    request=request)
+#                            for tag in Tag.objects.all() ]
+#                For now, we just output the tag names, since we don't know what 
+#                tag-detail should look like.
+                 'tags' : [ tag.name for tag in Tag.objects.all() ]
              }
         return Response(rv)