[Answered ]-URL not resolved with APIView in Django REST Framework for non-model end point

2👍

You should query:

curl -X GET http://localhost:8000/api/v1/quote/

or alter the urls as:

url(r'^policies/quote/', policies_views.CalculateQuoteView.as_view()),

Leave a comment