Django REST Framework Docs (DRF Docs) allows you to list all your API Endpoints that inherit from Django REST Framework automatically. Its purpose is to work out of the box and it should take a minimum to install it.

Visit the Demo

Live API Endpoints

A really useful feature of DRF Docs is that you can also test endpoints from within the docs. Feel free to use our demo and try them! For more information visit the Live API Endpoints page of the docs.

Mock Up

How It Works

The concept is pretty simple. Once you install it you should go the the url you set (ie. http://0.0.0.0:8000/docs/) and you should see all your API endpoints along with the serializer fields, allowed methods etc for each one.

DRF Docs will then read all your urls and will list those that inherit from Django REST Framework's APIView.

Edit on Github