1👍
✅
Your code is good – but you have an extra “$” sign on the url registration on the api. use:
url(r'^api/', include(bluebird_api.urls)),
Instead of:
url(r'^api/$', include(bluebird_api.urls)),
Then, the url ‘/api/bluebird/album/’ works.
Source:stackexchange.com