Zeth

Results 3 comments of Zeth

Since you are using a prefix it will prefix your doc route as well. At the moment, you are using `prefix="/mapi"` it will prefix your `doc="/mapi/doc"` which ends up becoming...

Sorry I missed another part of your code, but have you tried using `app.register_blueprint(bp_mapi, url_prefix="/mapi")` instead of applying prefix in the Api itself?

I recommend using Flask-SQLAlchemy. You can check out my [boilerplate](https://github.com/X1Zeth2X/flask-restx-boilerplate) as an example for this. Usually you use Flask libraries and most of the resources available for Flask should work...