Fast API Tutorial, Part 6: Path Parameters and Numeric Validation

In a similar manner to how we saw in the previous video, we can also pass data to the server via Path Parameters. This is useful for things like GETting detail information or submitting a PUT, PATCH, or DELETE request for an individual item. In this video we discuss using some very cool functionality we get for validating numeric types by importing the Path class from FastAPI. GitHub:
Back to Top