[Django]-Not able to GET Image from Django Rest API

4👍

You did not included the media url in your urls.py

from django.conf.urls.static import static
from django.conf import settings

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

see the docs on serving media and static files.

Leave a comment