FastAPI is a high-performant REST API framework for Python. It's built on top of Starlette and it uses Pydantic for data validation. It can generate OpenAPI documentation from your code and also ...
To access protected endpoints of our example app, we will need to provision a JWT token from our server for the selected user. This token will be used to access any protected endpoints in our app.