Fast API Tutorial, Part 4: Request Body

Another important part of sending requests to a REST API pertains to sending data back to the server. We’ve seen previously that this can be done via query parameters, but when sending large quantities of data, or when sending sensitive information that you don’t want to have displayed as part of the URL then you could send data as part of a POST, PATCH, or PUT request as request body. We discuss this information in this video. GitHub:
Back to Top