#In views.py file: def get_param(request, param): my_parameter = param #In urls.py path('test/<param>', views.get_param, name='get_param'), #Then ypu can access with the url: http://localhost:8000/test/test_param