The answer that I found on the web is to use request.args.get. However, I cannot manage it to work. I have the following simple example:
request.args.get
from fl
http://localhost:5000/api/iterators/opel/next?n=5
For something like the case before
from flask import Flask, request n = request.args.get("n")
Can do the trick